Searched refs:low (Results 251 - 275 of 553) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/zlib/
H A Dinflate.c306 unsigned low, size; local
321 low = 0;
323 if ((low % 7) == 0) printf("\n ");
324 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
325 state.lencode[low].val);
326 if (++low == size) break;
332 low = 0;
334 if ((low % 6) == 0) printf("\n ");
335 printf("{%u,%u,%d}", state.distcode[low]
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_bld.cpp451 uint32_t high, low, count=1; local
455 low = UCOL_COMMON_TOP2<<24;
459 low = UCOL_BYTE_COMMON << 24; //0x05000000;
468 g->noOfRanges = ucol_allocWeights(low, high, count, maxByte, g->ranges);
479 uint32_t low = lows[fStrength*3+strength]; local
492 if(low >= high && strength > UCOL_PRIMARY) {
498 if (low < UCOL_COMMON_TOP2<<24 ) {
499 // Override if low range is less than UCOL_COMMON_TOP2.
500 low = UCOL_COMMON_TOP2<<24;
504 // Override if low rang
[all...]
/external/chromium_org/chrome/installer/test/
H A Dalternate_version_generator.cc107 static ChromeVersion FromHighLow(DWORD high, DWORD low) { argument
109 static_cast<ULONGLONG>(low));
128 DWORD low() const { return static_cast<DWORD>(version_); } function in class:__anon5736::ChromeVersion
336 DWORD low; member in struct:__anon5736::VersionPair
339 ctx.current_version.high(), ctx.current_version.low()
342 ctx.new_version.high(), ctx.new_version.low()
/external/e2fsprogs/lib/ext2fs/
H A Dicount.c355 int low, high, mid; local
374 low = 0;
376 while (low <= high) {
377 mid = ((unsigned)low + (unsigned)high) >> 1;
385 low = mid+1;
389 * low (where high will be left at low-1).
392 return insert_icount_el(icount, ino, low);
/external/eigen/Eigen/src/Core/
H A DDenseBase.h303 LinSpaced(Sequential_t, Index size, const Scalar& low, const Scalar& high);
305 LinSpaced(Index size, const Scalar& low, const Scalar& high);
307 LinSpaced(Sequential_t, const Scalar& low, const Scalar& high);
309 LinSpaced(const Scalar& low, const Scalar& high);
330 Derived& setLinSpaced(Index size, const Scalar& low, const Scalar& high);
331 Derived& setLinSpaced(const Scalar& low, const Scalar& high);
/external/openssl/crypto/bn/
H A Dbn_lib.c92 void BN_set_params(int mult, int high, int low, int mont) argument
108 if (low >= 0)
110 if (low > (int)(sizeof(int)*8)-1)
111 low=sizeof(int)*8-1;
112 bn_limit_bits_low=low;
113 bn_limit_num_low=1<<low;
/external/chromium_org/content/browser/android/
H A Dedge_effect.cc61 T Clamp(T value, T low, T high) { argument
62 return value < low ? low : (value > high ? high : value);
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3gthr.c369 cText.seq_num.high = 0; cText.seq_num.low = 0;
371 cText.seq_num.high <<= 8; cText.seq_num.low <<= 8;
373 cText.seq_num.low |= ss->gs.hdr[7 + i];
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_armv6.S95 @ Shift low pass filter state, and excute the low pass filter.
96 @ The memmove() and the low pass filter loop are unrolled and mixed.
H A Dfilters_neon.S33 vmov.i32 d0[0], r4 @ d0: 00000033 (low), 00000000 (high)
71 vorr d27, d26 @ Duplicate the high word with its low one.
/external/compiler-rt/lib/builtins/
H A Dfp_lib.h120 struct { uint64_t high, low; } s; member in struct:__anon19588::__anon19589
122 struct { uint64_t low, high; } s; member in struct:__anon19588::__anon19590
134 word = uu.s.low;
/external/qemu/block/
H A Draw-win32.c165 LONG low, high; local
167 low = offset;
169 if (!SetFilePointer(s->hfile, low, &high, FILE_BEGIN))
/external/tcpdump/
H A Dprint-snmp.c337 u_int32_t low; member in struct:be::__anon31550::__anon31551
568 register u_int32_t high, low; local
571 high = 0, low = 0;
574 ((low & 0xFF000000) >> 24);
575 low = (low << 8) | *p;
578 elem->data.uns64.low = low;
743 printf("%u", elem->data.uns64.low);
748 d += elem->data.uns64.low;
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_armv6.S98 @ Shift low pass filter state, and excute the low pass filter.
99 @ The memmove() and the low pass filter loop are unrolled and mixed.
/external/checkpolicy/
H A Dpolicy_scan.l236 low-high |
240 low |
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc321 int low = second - kHexDigits; local
322 DCHECK(low >= 0 || low < kHexBase);
324 char decoded = static_cast<char>(high * kHexBase + low);
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dgeneric.c101 BN_ULONG high, low, ret, tmp = (a); \
103 BN_UMULT_LOHI(low, high, w, tmp); \
107 ret += low; \
108 (c) += (ret < low) ? 1 : 0; \
114 BN_ULONG high, low, ret, ta = (a); \
115 BN_UMULT_LOHI(low, high, w, ta); \
116 ret = low + (c); \
118 (c) += (ret < low) ? 1 : 0; \
131 BN_ULONG high, low, ret, tmp = (a); \
135 low
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dtuple.pxd44 tuple PyTuple_GetSlice(object p, Py_ssize_t low, Py_ssize_t high)
46 # Take a slice of the tuple pointed to by p from low to high and return it as a new tuple.
/external/chromium_org/third_party/icu/source/tools/makeconv/
H A Dgencnvex.c398 * 1. Count the number of unique unit values and get the low/high unit values
420 int32_t low, high, prev; local
427 /* step 1: examine the input units; set low, high, uniqueCount */
430 low=bytes[unitIndex];
433 prev=high=low;
446 count=(high-low)+1;
452 * from low to high
472 prev=low-1; /* just before low to prevent empty subsections before low */
719 UChar32 low, high, prev; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.h269 * \param low low end of range (inclusive)
274 int yasm_intnum_in_range(const yasm_intnum *intn, long low, long high);
/external/compiler-rt/test/builtins/Unit/
H A Dfloattisf_test.c37 at.s.high, at.s.low, x, expected);
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java855 //final int low = getI4 (code, scan + 4);
856 final int low = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xFF & code [++ scan]);
861 final int [] targets = new int [high - low + 2];
864 for (int index = low; index <= high; ++ index)
868 targets [index - low + 1] = ip + ov;
873 branches.put (ip, new TABLESWITCH (low, high, targets));
1731 TABLESWITCH (final int low, final int high, final int [] targets /* first one is default */) argument
1734 m_low = low;
1755 // low, high:
1756 final int low
[all...]
/external/icu/icu4c/source/tools/makeconv/
H A Dgencnvex.c398 * 1. Count the number of unique unit values and get the low/high unit values
420 int32_t low, high, prev; local
427 /* step 1: examine the input units; set low, high, uniqueCount */
430 low=bytes[unitIndex];
433 prev=high=low;
446 count=(high-low)+1;
452 * from low to high
472 prev=low-1; /* just before low to prevent empty subsections before low */
719 UChar32 low, high, prev; local
[all...]
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsetup.h89 __u32 low; member in struct:tag_serialnr
/external/libsepol/include/sepol/policydb/
H A Dmls_types.h45 mls_level_t level[2]; /* low == level[0], high == level[1] */
130 uint32_t low; /* first bit this struct represents */ member in struct:mls_semantic_cat
131 uint32_t high; /* last bit represented - equals low for a single cat */

Completed in 8139 milliseconds

<<11121314151617181920>>