Searched defs:high (Results 101 - 125 of 229) sorted by relevance

12345678910

/external/compiler-rt/lib/builtins/
H A Dfp_lib.h120 struct { uint64_t high, low; } s; member in struct:__anon3123::__anon3124
122 struct { uint64_t low, high; } s; member in struct:__anon3123::__anon3125
129 if (uu.s.high){
130 word = uu.s.high;
/external/dng_sdk/source/
H A Ddng_utils.h1181 // high = seed / 127773
1184 uint32 high = (temp + ((seed - temp) >> 1)) >> 16; local
1188 uint32 low = seed - high * 127773;
1192 seed = 16807 * low - 2836 * high;
/external/e2fsprogs/lib/ext2fs/
H A Dicount.c355 int low, high, mid; local
375 high = (int) icount->count-1;
376 while (low <= high) {
377 mid = ((unsigned)low + (unsigned)high) >> 1;
383 high = mid-1;
389 * low (where high will be left at low-1).
/external/icu/icu4c/source/common/
H A Duset.cpp329 * - some supplementary: (length|0x8000) (bmpLength<length) BMP, .., BMP, supp-high, supp-low, ..
439 uint16_t high=(uint16_t)(c>>16), low=(uint16_t)c; local
443 if (high < array[base] || (high==array[base] && low<array[base+1])) {
445 } else if (high < array[base+hi] || (high==array[base+hi] && low<array[base+hi+1])) {
451 } else if (high < array[iabs] || (high==array[iabs] && low<array[iabs+1])) {
/external/icu/icu4c/source/tools/makeconv/
H A Dgencnvex.c395 * 1. Count the number of unique unit values and get the low/high unit values
417 int32_t low, high, prev; local
424 /* step 1: examine the input units; set low, high, uniqueCount */
430 prev=high=low;
434 high=bytes[unitIndex];
436 if(high!=prev) {
437 prev=high;
443 count=(high-low)+1;
449 * from low to high
474 high
716 UChar32 low, high, prev; local
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp286 int32_t high = 2038; local
313 << "\t values are 1902(low) and 2038(high)." << endl;
336 high = atoi(options[kOptCutover].value);
340 high = atoi(comma + 1);
346 dumper.setHighYear(high);
/external/jemalloc/src/
H A Dchunk.c153 size_t high = atomic_read_z(&highchunks); local
154 while (cur > high && atomic_cas_z(&highchunks, high, cur)) {
159 high = atomic_read_z(&highchunks);
161 if (cur > high && prof_gdump_get_unlocked())
/external/kernel-headers/original/uapi/linux/
H A Dbcache.h23 __u64 high; member in struct:bkey
44 KEY_FIELD(KEY_PTRS, high, 60, 3)
45 KEY_FIELD(HEADER_SIZE, high, 58, 2)
46 KEY_FIELD(KEY_CSUM, high, 56, 2)
47 KEY_FIELD(KEY_PINNED, high, 55, 1)
48 KEY_FIELD(KEY_DIRTY, high, 36, 1)
50 KEY_FIELD(KEY_SIZE, high, 20, KEY_SIZE_BITS)
51 KEY_FIELD(KEY_INODE, high, 0, 20)
66 * The high bit being set is a relic from when we used it to do binary
72 .high
[all...]
/external/llvm/include/llvm/ADT/
H A DHashing.h22 // execution of the program has a high probability of producing a different
126 /// run with high probability in order to ensure that the hash codes are not
180 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { argument
183 uint64_t a = (low ^ high) * kMul;
185 uint64_t b = (high ^ a) * kMul;
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp73 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) argument
74 : Low(low), High(high), BB(bb) {}
/external/ltrace/
H A Dlens_default.c661 out_bits(FILE *stream, size_t low, size_t high) argument
663 if (low == high)
666 return fprintf(stream, "%zd-%zd", low, high);
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dkdtree_single_index.h278 DistanceType low, high; member in struct:cvflann::KDTreeSingleIndex::Interval
319 bbox[i].high = (DistanceType)dataset_[0][i];
324 if (dataset_[k][i]>bbox[i].high) bbox[i].high = (DistanceType)dataset_[k][i];
352 bbox[i].high = (DistanceType)dataset_[vind_[left]][i];
357 if (bbox[i].high<dataset_[vind_[k]][i]) bbox[i].high=(DistanceType)dataset_[vind_[k]][i];
370 left_bbox[cutfeat].high = cutval;
377 node->divlow = left_bbox[cutfeat].high;
382 bbox[i].high
[all...]
/external/opencv3/modules/imgproc/src/
H A Dcanny.cpp58 static bool ippCanny(const Mat& _src, Mat& _dst, float low, float high) argument
90 _dst.ptr(), (int)_dst.step, roi, low, high, buffer) < 0 )
129 int low = cvFloor(low_thresh), high = cvFloor(high_thresh); local
155 (float) low, (float) high);
184 low, high); local
243 : boundaries(_boundaries), src(_src), map(_map), low(_low), high(_high),
513 if (!prev_flag && m > high && (i <= boundaries.start+1 || _map[j-mapstep] != 2) )
571 int high; member in class:cv::tbbCanny
639 int high = cvFloor(high_thresh); local
666 g.run(tbbCanny(Range(i * grainSize, (i + 1) * grainSize), src, map, low, high, aperture_siz
706 int high = cvFloor(high_thresh); local
[all...]
/external/opencv3/modules/imgproc/test/
H A Dtest_histograms.cpp80 double low, high, range_delta; member in class:CV_BaseHistTest
166 high = cvtest::getMaxVal(img_type);
170 high = 1000;
171 low = -high;
174 range_delta = (cvtest::randInt(rng) % 2)*(high-low)*0.05;
180 double _low = low + range_delta, _high = high - range_delta;
1189 cvtest::randUni( rng, images_i, Scalar::all(low), Scalar::all(high) );
1400 cvtest::randUni( rng, images_i, Scalar::all(low), Scalar::all(high) );
1426 double val = cvtest::randReal(rng)*(high - low) + low;
1632 cvtest::randUni( rng, images_i, Scalar::all(low), Scalar::all(high) );
[all...]
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_sha.cpp339 FX_DWORD high, low; local
341 high = (ctx->total[0] >> 29) | (ctx->total[1] << 3);
343 PUT_FX_DWORD(high, msglen, 0);
582 uint64_t high, low; local
583 high = (ctx->total[0] >> 29) | (ctx->total[1] << 3);
585 PUT_FX_64DWORD(high, msglen, 0);
629 uint64_t high, low; local
630 high = (ctx->total[0] >> 29) | (ctx->total[1] << 3);
632 PUT_FX_64DWORD(high, msglen, 0);
/external/toybox/toys/pending/
H A Dcrond.c139 static long getval(char *num, long low, long high) argument
143 if (*num || (val < low) || (val > high)) return -1;
/external/v8/test/cctest/
H A Dtest-assembler-arm.cc1038 uint32_t high; member in struct:__anon18274
1103 // Move d22 into low and high.
1107 __ str(r4, MemOperand(r0, offsetof(T, high)));
1138 CHECK_EQ(1079146608u, t.high);
1423 // Test generating labels at high addresses.
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java857 //final int high = getI4 (code, scan + 8);
859 final int high = (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)
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
1735 m_high = high;
1755 // low, high:
1762 final int high = m_high;
1763 out.write4 (high >>> 2
[all...]
/external/gptfdisk/
H A Dbasicmbr.cc628 // Find the low and high used partition numbers (numbered from 0).
630 // *low and *high values are both set to 0 when no partitions
634 int BasicMBRData::GetPartRange(uint32_t *low, uint32_t *high) { argument
639 *high = 0;
642 *high = i; // since we're counting up, set the high value
/external/icu/icu4c/source/test/intltest/
H A Dtzfmttst.cpp108 UDate low, high; local
112 high = cal->getTime(status);
263 if (!((BasicTimeZone*)&outtz)->hasEquivalentTransitions((BasicTimeZone&)*tz, low, high, TRUE, status)) {
/external/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp418 int high = count - 1; local
423 guess = (high + low)/2;
432 high = guess;
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java763 int high = ByteArray.read32bit(code, index2 + 4);
764 return index2 + (high - low + 1) * 4 + 8;
1524 int low, high; field in class:CodeIterator.Table
1526 Table(int pos, int defaultByte, int low, int high, int[] offsets) { argument
1529 this.high = high;
1534 ByteArray.write32bit(high, newcode, dest + 4);
/external/kernel-headers/original/uapi/sound/
H A Dsfnt_info.h130 unsigned char low, high; /* key note range */ member in struct:soundfont_voice_info
/external/libvorbis/lib/
H A Dvorbisenc.c62 /* high level configuration information for setting things up
413 nominal/high noise encoding depth */
660 float high=map[j+1]; local
661 float del=(req-low)/(high-low);
690 /* too low/high an ATH floater is nonsensical, but doesn't break anything */
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c129 uint16_t high[LEN_HIGH_SYMBOLS]; member in struct:lzma_len_dec
576 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; local
577 return s->lzma.literal[low + high];
635 probs = l->high;

Completed in 1392 milliseconds

12345678910