/external/selinux/libsepol/src/ |
ports.c | 46 /* Create a low level port structure from 57 int low = sepol_port_get_low(data); local 72 tmp_port->u.port.low_port = low; 75 ERR(handle, "low port %d exceeds high port %d", 103 low, high, sepol_port_get_proto_str(proto)); 113 int low = port->u.port.low_port; local 129 sepol_port_set_range(tmp_record, low, high); 143 "to record", low, high, sepol_port_get_proto_str(rec_proto)); 176 int low, high, proto; local 178 sepol_port_key_unpack(key, &low, &high, &proto) 214 int low, high, proto; local 254 int low, high, proto; local [all...] |
context_record.c | 213 char *tmp = NULL, *low, *high; local 230 low = tmp; 235 if (!(high = strchr(low, ':'))) 239 if (sepol_context_set_user(handle, tmp_con, low) < 0) 241 low = high; 244 if (!(high = strchr(low, ':'))) 248 if (sepol_context_set_role(handle, tmp_con, low) < 0) 250 low = high; 253 if (!(high = strchr(low, ':'))) { 254 if (sepol_context_set_type(handle, tmp_con, low) < 0 [all...] |
/external/svox/pico/lib/ |
picoklex.c | 265 picoos_int32 low, mid, high; local 275 low = 0; 279 while (low < high) { 280 mid = (low + high) / 2; 283 low = mid + 1; 288 PICODBG_ASSERT(high == low); 289 /* low points to the first entry greater than or equal to searchval */ 291 if (low < this->nrblocks) { 292 indval = klex_getSearchIndexVal(this, low); 294 low-- [all...] |
/external/icu/icu4c/source/i18n/ |
japancal.cpp | 387 int32_t low = 0; local 398 low = kCurrentEra; 400 fprintf(stderr, " low=%d (special)\n", low); 409 while (low < high - 1) { 410 int32_t i = (low + high) / 2; 414 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n", 415 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year); 434 low = i; 439 fprintf(stderr, ". low=%d, high=%d, i=%d, diff=%d.. %d\n", low, high, i, diff, year) [all...] |
/art/runtime/interpreter/mterp/mips/ |
op_const.S | 3 FETCH(a0, 1) # a0 <- bbbb (low)
|
/art/runtime/interpreter/mterp/x86/ |
op_move_result_wide.S | 4 movl (%eax), %eax # Get low
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
inftrees.c | 51 unsigned low; /* low bits for current root entry */
local 52 unsigned mask; /* mask for low root bits */
159 of the low root bits of huff. This is saved in low to check for when a
207 low = (unsigned)(-1); /* trigger new sub-table when len > root */
209 mask = used - 1; /* mask for comparing low */
232 /* replicate for those indices with low len bits equal to huff */
260 if (len > root && (huff & mask) != low) {
284 low = huff & mask; [all...] |
/external/compiler-rt/lib/builtins/ |
floattixf.c | 78 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */ 80 fb.u.low.all = (du_int)a; /* mantissa */
|
floatuntixf.c | 76 fb.u.high.s.low = (e + 16383); /* exponent */ 77 fb.u.low.all = (du_int)a; /* mantissa */
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
bitdepth_conversion_vsx.h | 39 const int32x4_t low = vec_mergel(even, odd); local 41 vec_vsx_st(low, c, s + 4);
|
/external/webrtc/webrtc/base/ |
random.h | 41 // Uniformly distributed pseudo-random number in the interval [low, high]. 42 uint32_t Rand(uint32_t low, uint32_t high); 44 // Uniformly distributed pseudo-random number in the interval [low, high]. 45 int32_t Rand(int32_t low, int32_t high);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
augmented_cb_corr.c | 31 size_t low, /* (i) Lag to start from (typically 47 for (lagcount=low; lagcount<=high; lagcount++) {
|
/external/zlib/src/contrib/infback9/ |
inftree9.c | 51 unsigned low; /* low bits for current root entry */ local 52 unsigned mask; /* mask for low root bits */ 153 of the low root bits of huff. This is saved in low to check for when a 200 low = (unsigned)(-1); /* trigger new sub-table when len > root */ 202 mask = used - 1; /* mask for comparing low */ 226 /* replicate for those indices with low len bits equal to huff */ 253 if (len > root && (huff & mask) != low) { 278 low = huff & mask [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mep/ |
mep1.s | 3 # This will be in low memory.
|
/art/runtime/interpreter/mterp/mips64/ |
op_const_wide.S | 3 lh a0, 2(rPC) # a0 <- bbbb (low) 4 lh a1, 4(rPC) # a1 <- BBBB (low middle)
|
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/ |
fixunsdfsi.c | 72 (fb.u.s.low >> 21)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
BitsStreamGenerator.java | 86 final int low = next(26); local 87 return (high | low) * 0x1.0p-52d; 149 final long low = ((long) next(32)) & 0xffffffffL; local 150 return high | low;
|
/external/compiler-rt/test/builtins/Unit/ |
addvti3_test.c | 41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low, 42 expectedt.s.high, expectedt.s.low);
|
absvti2_test.c | 42 at.s.high, at.s.low, xt.s.high, xt.s.low, 43 expectedt.s.high, expectedt.s.low);
|
/external/google-breakpad/src/google_breakpad/common/ |
breakpad_types.h | 74 uint64_t low; member in struct:__anon19394
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
wpa.h | 58 uint8 low; member in struct:__anon40000::__anon40001 70 uint8 low; member in struct:__anon40002::__anon40003 90 uint8 low; member in struct:__anon40005::__anon40006 99 uint8 low; member in struct:__anon40007::__anon40008
|
/toolchain/binutils/binutils-2.25/gas/ |
flonum.h | 40 * Exponent is the place value of the low littlenum. E.g.: * 41 * If 0: low points to the units littlenum. * 42 * If 1: low points to the LITTLENUM_RADIX littlenum. * 43 * If -1: low points to the 1/LITTLENUM_RADIX littlenum. * 52 LITTLENUM_TYPE *low; /* low order littlenum of a bignum */ member in struct:FLONUM_STRUCT 55 /* If flonum is 0.0, leader==low-1 */
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cbrt.c | 46 u_int32_t high,low; local 48 EXTRACT_WORDS(hx,low,x); 69 if((hx|low)==0)
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
fcache.c | 47 int low=0;
local 58 if ( q != NULL && low==0 ) low = p-table;
|
/external/elfutils/tests/ |
dwfl-bug-addr-overflow.c | 51 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local 54 assert (low); 66 assert (mod == low);
|