high               63 librpc/gen_ndr/lsa.h 	uint32_t high;
high              475 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->high));
high              487 librpc/gen_ndr/ndr_lsa.c 		NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->high));
high              499 librpc/gen_ndr/ndr_lsa.c 	ndr_print_uint32(ndr, "high", r->high);
high             1036 source3/auth/auth_util.c 		gid_t high, low;
high             1040 source3/auth/auth_util.c 		if ( lp_idmap_gid(&low, &high) && (gids[i] >= low) && (gids[i] <= high) )
high               82 source3/include/privileges.h 	uint32 high;
high             4269 source3/include/proto.h bool lp_idmap_uid(uid_t *low, uid_t *high);
high             4270 source3/include/proto.h bool lp_idmap_gid(gid_t *low, gid_t *high);
high               63 source3/lib/ldb/common/qsort.c #define PUSH(low, high)	((void) ((top->lo = (low)), (top->hi = (high)), ++top))
high               64 source3/lib/ldb/common/qsort.c #define	POP(low, high)	((void) (--top, (low = top->lo), (high = top->hi)))
high              462 source3/lib/privileges.c 		(*new_la)[i].luid.high = old_la[i].luid.high;
high              409 source3/lib/privileges_basic.c 	if (set->high != 0)
high              438 source3/lib/privileges_basic.c 	new_set[priv_set->count].luid.high = set.luid.high;
high              458 source3/lib/privileges_basic.c 	luid.luid.high = 0;
high              506 source3/lib/privileges_basic.c 		if ( privset->set[i].luid.high != 0 )
high             1000 source3/lib/time.c 	float high;
high             1011 source3/lib/time.c 	high = 65536;	
high             1012 source3/lib/time.c 	high = high/10000;
high             1013 source3/lib/time.c 	high = high*65536;
high             1014 source3/lib/time.c 	high = high/1000;
high             1015 source3/lib/time.c 	high = high * (~(nttime >> 32));
high             1020 source3/lib/time.c 	sec=(int)(high+low);
high             7232 source3/param/loadparm.c bool lp_idmap_uid(uid_t *low, uid_t *high)
high             7240 source3/param/loadparm.c         if (high)
high             7241 source3/param/loadparm.c                 *high = idmap_uid_high;
high             7246 source3/param/loadparm.c bool lp_idmap_gid(gid_t *low, gid_t *high)
high             7254 source3/param/loadparm.c         if (high)
high             7255 source3/param/loadparm.c                 *high = idmap_gid_high;
high             7264 source3/param/loadparm.c 	uint32 low, high;
high             7266 source3/param/loadparm.c 	if (sscanf(pszParmValue, "%u - %u", &low, &high) != 2 || high < low)
high             7274 source3/param/loadparm.c         idmap_uid_high = high;
high             7281 source3/param/loadparm.c 	uint32 low, high;
high             7283 source3/param/loadparm.c 	if (sscanf(pszParmValue, "%u - %u", &low, &high) != 2 || high < low)
high             7291 source3/param/loadparm.c         idmap_gid_high = high;
high               34 source3/rpc_parse/parse_misc.c 	uint32 low, high;
high               46 source3/rpc_parse/parse_misc.c 		high = *nttime >> 32;
high               51 source3/rpc_parse/parse_misc.c 	if(!prs_uint32("high", ps, depth, &high)) /* high part */
high               55 source3/rpc_parse/parse_misc.c 		*nttime = (((uint64_t)high << 32) + low);
high              768 source3/rpc_parse/parse_prs.c 		uint32 high, low;
high              773 source3/rpc_parse/parse_prs.c 		if (!prs_uint32(name, ps, depth+1, &high))
high              776 source3/rpc_parse/parse_prs.c 		*data64 = ((uint64_t)high << 32) + low;
high              780 source3/rpc_parse/parse_prs.c 		uint32 high = (*data64) >> 32, low = (*data64) & 0xFFFFFFFF;
high              782 source3/rpc_parse/parse_prs.c 			   prs_uint32(name, ps, depth+1, &high);
high             1381 source3/rpc_server/srv_lsa_nt.c 			entries[i].luid.high = 0;
high             1389 source3/rpc_server/srv_lsa_nt.c 			entries[i].luid.high = luid.luid.high;
high             1745 source3/rpc_server/srv_lsa_nt.c 			luid_attrs[i].luid.high = privileges.set[i].luid.high;
high             2318 source3/rpc_server/srv_lsa_nt.c 	r->out.luid->high = priv_luid.luid.high;
high              482 source3/rpcclient/cmd_lsarpc.c 		       priv_array.privs[i].luid.high,
high              484 source3/rpcclient/cmd_lsarpc.c 		       priv_array.privs[i].luid.high,
high              696 source3/rpcclient/cmd_lsarpc.c 			privs->set[i].luid.high,
high              900 source3/rpcclient/cmd_lsarpc.c 	printf("%u:%u (0x%x:0x%x)\n", luid.high, luid.low, luid.high, luid.low);
high             6816 source3/smbd/reply.c static uint32 map_lock_offset(uint32 high, uint32 low)
high             6820 source3/smbd/reply.c 	uint32 highcopy = high;
high             6839 source3/smbd/reply.c 	high <<= (31 - i);
high             6841 source3/smbd/reply.c 	return (high|low);
high             6874 source3/smbd/reply.c 			uint32 high = IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset));
high             6877 source3/smbd/reply.c 			if((new_low = map_lock_offset(high, low)) == 0) {
high             6883 source3/smbd/reply.c 				(unsigned int)high, (unsigned int)low, (unsigned int)new_low ));
high              199 source4/heimdal/lib/krb5/addr_families.c 		   unsigned long len, krb5_address *low, krb5_address *high)
high              221 source4/heimdal/lib/krb5/addr_families.c     high->addr_type = KRB5_ADDRESS_INET;
high              222 source4/heimdal/lib/krb5/addr_families.c     if(krb5_data_alloc(&high->address, 4) != 0) {
high              226 source4/heimdal/lib/krb5/addr_families.c     _krb5_put_int(high->address.data, h, high->address.length);
high              392 source4/heimdal/lib/krb5/addr_families.c 		   unsigned long len, krb5_address *low, krb5_address *high)
high              431 source4/heimdal/lib/krb5/addr_families.c     high->addr_type = KRB5_ADDRESS_INET6;
high              432 source4/heimdal/lib/krb5/addr_families.c     if (krb5_data_alloc(&high->address, sizeof(haddr.s6_addr)) != 0) {
high              436 source4/heimdal/lib/krb5/addr_families.c     memcpy(high->address.data, haddr.s6_addr, sizeof(haddr.s6_addr));
high              453 source4/heimdal/lib/krb5/addr_families.c     krb5_address high;
high              502 source4/heimdal/lib/krb5/addr_families.c 	krb5_addresses low, high;
high              514 source4/heimdal/lib/krb5/addr_families.c 	ret = krb5_parse_address(context, buf, &high);
high              520 source4/heimdal/lib/krb5/addr_families.c 	if(high.len != 1 && high.val[0].addr_type != low.val[0].addr_type) {
high              522 source4/heimdal/lib/krb5/addr_families.c 	    krb5_free_addresses(context, &high);
high              526 source4/heimdal/lib/krb5/addr_families.c 	ret = krb5_copy_address(context, &high.val[0], &high0);
high              533 source4/heimdal/lib/krb5/addr_families.c 	krb5_free_addresses(context, &high);
high              544 source4/heimdal/lib/krb5/addr_families.c 	a->high = high0;
high              547 source4/heimdal/lib/krb5/addr_families.c 	a->high = low0;
high              558 source4/heimdal/lib/krb5/addr_families.c     krb5_free_address(context, &a->high);
high              582 source4/heimdal/lib/krb5/addr_families.c     ret = krb5_copy_address(context, &i->high, &o->high);
high              622 source4/heimdal/lib/krb5/addr_families.c     ret = krb5_print_address (&a->high, str + size, len - size, &l);
high              655 source4/heimdal/lib/krb5/addr_families.c 	return sign * krb5_address_order(context, &a->high, &b->high);
high              660 source4/heimdal/lib/krb5/addr_families.c 	tmp2 = krb5_address_order(context, &a->high, a2);
high             1482 source4/heimdal/lib/krb5/addr_families.c 				krb5_address *high)
high             1486 source4/heimdal/lib/krb5/addr_families.c 	return (*a->mask_boundary)(context, inaddr, prefixlen, low, high);
high               62 source4/lib/ldb/common/qsort.c #define PUSH(low, high)	((void) ((top->lo = (low)), (top->hi = (high)), ++top))
high               63 source4/lib/ldb/common/qsort.c #define	POP(low, high)	((void) (--top, (low = top->lo), (high = top->hi)))
high              254 source4/rpc_server/lsa/dcesrv_lsa.c 		e->luid.high = 0;
high             1776 source4/rpc_server/lsa/dcesrv_lsa.c 		privs->set[i].luid.high = 0;
high             1965 source4/rpc_server/lsa/dcesrv_lsa.c 		if (r->in.privs->set[i].luid.high) {
high             2027 source4/rpc_server/lsa/dcesrv_lsa.c 		if (r->in.privs->set[i].luid.high) {
high             2703 source4/rpc_server/lsa/dcesrv_lsa.c 	r->out.luid->high = 0;
high             2725 source4/rpc_server/lsa/dcesrv_lsa.c 	if (r->in.luid->high != 0) {
high              153 source4/torture/raw/eas.c 	int i, high, low, maxeasize;
high              166 source4/torture/raw/eas.c 	high = maxeasize;
high              180 source4/torture/raw/eas.c 					eaname, i, high, low);
high              189 source4/torture/raw/eas.c 			if (high - low == 1 && high != maxeasize) {
high              194 source4/torture/raw/eas.c 			i += (high - low + 1) / 2;
high              199 source4/torture/raw/eas.c 					eaname, i, high, low, 
high              202 source4/torture/raw/eas.c 			high = i;
high              203 source4/torture/raw/eas.c 			if (high - low <= 1) {
high              208 source4/torture/raw/eas.c 			i -= (high - low + 1) / 2;
high               44 source4/winbind/idmap.c 		uint32_t *high)
high               83 source4/winbind/idmap.c 	*high = upper_bound;
high              305 source4/winbind/idmap.c 	uint32_t low, high, hwm, new_xid;
high              420 source4/winbind/idmap.c 	ret = idmap_get_bounds(idmap_ctx, &low, &high);
high              453 source4/winbind/idmap.c 	if (hwm > high) {