Searched refs:low (Results 101 - 125 of 553) sorted by relevance

1234567891011>>

/external/zlib/src/
H A Dinftrees.c51 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
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
208 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) {
285 low
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dwin64-except.c359 long low, high, mask; local
374 span = 1; low = 8; high = 128; mask = 0x7;
382 low = 0;
392 low = 0;
407 if (win64_uwcode_bc_expand(bc, span, intv, intv, &low, &high) > 0)
408 add_span(add_span_data, bc, span, &code->off, low, high);
410 if (intv < low)
418 add_span(add_span_data, bc, span, &code->off, low, high);
472 long intv, low, high, mask; local
495 size = 0; low
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Dsorted_array_utils.js32 var low = 0;
36 while (low <= high) {
37 i = Math.floor((low + high) / 2);
40 low = i + 1; continue;
48 // return where we hit, or failing that the low pos
49 return hitPos != -1 ? hitPos : low;
66 * @param {function():*} mapLoFn Callback that produces the low value for the
70 * @param {number} loVal The low value for the search.
119 * @param {function():*} mapLoFn Callback that produces the low value for the
123 * @param {number} The low valu
[all...]
/external/e2fsprogs/resize/
H A Dextent.c144 __s64 low, high, mid; local
153 low = 0;
155 while (low <= high) {
157 mid = (low+high)/2;
159 if (low == high)
160 mid = low;
163 lowval = extent->list[low].old_loc;
178 mid = low + ((__u64) (range * (high-low)));
188 low
[all...]
/external/qemu/fpu/
H A Dsoftfloat-specialize.h105 | `low' values hold the most- and least-significant bits, respectively.
135 uint64_t high, low; member in struct:__anon29638
214 z.low = 0;
317 z.low = 0;
729 z.low = 0;
869 aLow = a.low & ~ LIT64( 0x4000000000000000 );
873 && ( a.low == aLow );
876 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 )));
890 && (LIT64( 0x8000000000000000 ) <= ((uint64_t) ( a.low<<1 )));
894 aLow = a.low
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c16 unsigned int low, high; local
18 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter));
20 return low | ((u64)high) << 32;
25 unsigned int low, high; local
27 asm volatile("rdtsc" : "=a" (low), "=d" (high));
29 return low | ((u64)high) << 32;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmath_semantic_util.js61 var low = unicode.charCodeAt(1);
62 if (0xD800 <= hi && hi <= 0xDBFF && !isNaN(low)) {
63 return ((hi - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000;
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A Diri2uri.py56 for low, high in escape_range:
57 if i < low:
59 if i >= low and i <= high:
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dcycleclock.h99 uint64 low, high;
100 __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
101 return (high << 32) | low;
109 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dcycleclock.h97 uint64 low, high;
98 __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
99 return (high << 32) | low;
107 // high 32 bits in tbu1; low 32 bits in tbl (tbu0 is garbage)
/external/chromium_org/tools/telemetry/telemetry/value/
H A Dhistogram_util.py44 start_histogram_buckets[b['low']] = b['count']
49 low = b['low']
50 if low in start_histogram_buckets:
51 new_bucket['count'] = b['count'] - start_histogram_buckets[low]
77 key = (b['low'], b['high'])
80 buckets = [{'low': key[0], 'high': key[1], 'count': value}
82 buckets.sort(key = lambda h : h['low'])
/external/compiler-rt/test/builtins/Unit/
H A Dnegvti2_test.c40 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dmulti3_test.c36 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
37 expectedt.s.high, expectedt.s.low);
H A Dfixdfti_test.c39 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dfixunsdfti_test.c41 a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
H A Dmuloti4_test.c43 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
44 expectedt.s.high, expectedt.s.low);
59 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
60 expectedt.s.high, expectedt.s.low);
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_analog.c42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
57 // channel (low 4 bits). this also sets ADLAR (left-adjust result)
77 low = ADCL;
81 low = 0;
86 return (high << 8) | low;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dchunk_range.cc98 int low = 0; local
101 while (low <= high) {
103 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
110 low = mid + 1;
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcryptomath.py164 def getRandomNumber(low, high):
165 if low >= high:
175 if n >= low and n < high:
268 low = ((2 ** (bits-1)) * 3) // 2
270 p = getRandomNumber(low, high)
276 p = getRandomNumber(low, high)
290 low = (2 ** (bits-2)) * 3//2
292 q = getRandomNumber(low, high)
298 q = getRandomNumber(low, high)
/external/oprofile/module/x86/
H A Dop_x86_model.h18 uint low; member in struct:op_saved_msr
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
H A Dmillion.S9 addi 15,15,499997@l # load low 16-bits of counter
/external/icu/icu4c/source/i18n/
H A Ducoleitr.cpp52 int32_t low; member in struct:RCEI
108 buffer[bufferIndex].low = ixLow;
163 buffer[bufferIndex].low = ixLow;
325 uint32_t low = 0, high = 0; local
334 low = cei->getOffset();
347 *ixLow = low;
378 int32_t low = 0, high = 0; local
395 low = cei->getOffset();
405 rceb.put((uint32_t)ce, low, high);
415 pceBuffer.put(result, rcei->low, rce
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterToUTF8Buffered.java123 * the 16 low-order bits of the given integer value; the 16 high-order bits
215 // of a Unicode surrogate pair and low char of the pair
226 // Avoid spanning by including the low
231 * and it is the high char of a high/low pair with
232 * no low char provided.
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
282 * [1101 11yy] [yyxx xxxx] (low surrogate)
287 char high, low;
290 low
[all...]
/external/chromium_org/third_party/zlib/
H A Dinftrees.c51 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
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
208 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) {
285 low
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c164 int low, high, mid; local
172 low = 0;
174 if (blk == bb->list[low])
175 return low;
179 while (low < high) {
180 mid = ((unsigned)low + (unsigned)high)/2;
181 if (mid == low || mid == high)
188 low = mid;

Completed in 583 milliseconds

1234567891011>>