Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/external/qemu/fpu/
Dsoftfloat-specialize.h55 uint64_t high, low; member
123 z.high = ((uint64_t) float16_val(a))<<54; in float16ToCommonNaN()
134 uint16_t mantissa = a.high>>54; in commonNaNToFloat16()
214 z.high = ( (uint64_t) float32_val(a) )<<41; in float32ToCommonNaN()
225 uint32_t mantissa = a.high>>41; in commonNaNToFloat32()
233 ( ( (uint32_t) a.sign )<<31 ) | 0x7F800000 | ( a.high>>41 ) ); in commonNaNToFloat32()
460 z.high = float64_val(a)<<12; in float64ToCommonNaN()
471 uint64_t mantissa = a.high>>12; in commonNaNToFloat64()
481 | ( a.high>>12 )); in commonNaNToFloat64()
541 ( ( a.high & 0x7FFF ) == 0x7FFF ) in floatx80_is_quiet_nan()
[all …]
Dsoftfloat.h155 uint16_t high; member
162 uint64_t high, low; member
164 uint64_t low, high;
563 a.high &= 0x7fff; in floatx80_abs()
569 a.high ^= 0x8000; in floatx80_chs()
575 return (a.high & 0x7fff) == 0x7fff && a.low == 0x8000000000000000LL; in floatx80_is_infinity()
580 return a.high >> 15; in floatx80_is_neg()
585 return (a.high & 0x7fff) == 0 && a.low == 0; in floatx80_is_zero()
590 return ((a.high & 0x7fff) == 0x7fff) && (a.low<<1); in floatx80_is_any_nan()
657 a.high &= 0x7fffffffffffffffLL; in float128_abs()
[all …]
/external/webkit/Source/WebCore/platform/graphics/gpu/
DPODInterval.h84 PODInterval(const T& low, const T& high) in PODInterval() argument
86 , m_high(high) in PODInterval()
88 , m_maxHigh(high) in PODInterval()
93 PODInterval(const T& low, const T& high, const UserData data) in PODInterval() argument
95 , m_high(high) in PODInterval()
97 , m_maxHigh(high) in PODInterval()
102 const T& high() const { return m_high; } in high() function
105 bool overlaps(const T& low, const T& high) const in overlaps() argument
107 if (this->high() < low) in overlaps()
109 if (high < this->low()) in overlaps()
[all …]
DPODIntervalTree.h87 static IntervalType createInterval(const T& low, const T& high, const UserData data = 0)
89 return IntervalType(low, high, data);
138 if (!(interval.high() < node->data().low())) in searchForOverlapsFrom()
146 const T* curMax = &node->data().high(); in updateNode()
184 *currentMaxValue = node->data().high(); in checkInvariantsFromNode()
185 return (node->data().high() == node->data().maxHigh()); in checkInvariantsFromNode()
195 if (localMaxValue < node->data().high()) in checkInvariantsFromNode()
196 localMaxValue = node->data().high(); in checkInvariantsFromNode()
/external/skia/gpu/include/
DGrTBSearch.h29 int high = count - 1; in GrTBSearch() local
31 while (high > low) { in GrTBSearch()
32 int index = (low + high) >> 1; in GrTBSearch()
36 high = index; in GrTBSearch()
41 if (EQ(array[high], target)) { in GrTBSearch()
42 return high; in GrTBSearch()
46 if (LT(array[high], target)) { in GrTBSearch()
47 high += 1; in GrTBSearch()
49 return ~high; in GrTBSearch()
DGrTHashCache.h91 int high = count - 1; in searchArray() local
93 while (high > low) { in searchArray()
94 int index = (low + high) >> 1; in searchArray()
98 high = index; in searchArray()
103 if (Key::EQ(*array[high], key)) { in searchArray()
106 GrAssert(0 == high || Key::LT(*array[high - 1], key)); in searchArray()
107 return high; in searchArray()
111 if (Key::LT(*array[high], key)) { in searchArray()
112 high += 1; in searchArray()
114 return ~high; in searchArray()
/external/libxml2/
Dchvalid.c169 int low, high, mid; in xmlCharInRange() local
178 high = rptr->nbShortRange - 1; in xmlCharInRange()
180 while (low <= high) { in xmlCharInRange()
181 mid = (low + high) / 2; in xmlCharInRange()
183 high = mid - 1; in xmlCharInRange()
185 if ((unsigned short) val > sptr[mid].high) { in xmlCharInRange()
197 high = rptr->nbLongRange - 1; in xmlCharInRange()
199 while (low <= high) { in xmlCharInRange()
200 mid = (low + high) / 2; in xmlCharInRange()
202 high = mid - 1; in xmlCharInRange()
[all …]
/external/stlport/src/
Dcollate.cpp32 string collate<char>::do_transform(const char* low, const char* high) const in do_transform()
33 { return string(low, high); } in do_transform()
35 long collate<char>::do_hash(const char* low, const char* high) const { in do_hash()
37 for ( ; low < high; ++low) in do_hash()
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const in do_transform()
53 { return wstring(low, high); } in do_transform()
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const { in do_hash()
57 for ( ; low < high; ++low) in do_hash()
Dctype.cpp399 const wchar_t* ctype<wchar_t>::do_is(const wchar_t* low, const wchar_t* high, in do_is() argument
404 for ( ; low < high; ++low, ++vec) { in do_is()
408 return high; in do_is()
413 const wchar_t* low, const wchar_t* high) const { in do_scan_is()
414 return find_if(low, high, _Ctype_w_is_mask(m, ctype<char>::classic_table())); in do_scan_is()
420 const wchar_t* low, const wchar_t* high) const { in do_scan_not()
421 return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table()))); in do_scan_not()
430 ctype<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const { in do_toupper()
431 for ( ; low < high; ++low) { in do_toupper()
436 return high; in do_toupper()
[all …]
/external/oprofile/module/x86/
Dop_model_ppro.c48 uint low, high; in ppro_setup_ctrs() local
53 CTRL_READ(low, high, msrs, i); in ppro_setup_ctrs()
55 CTRL_WRITE(low, high, msrs, i); in ppro_setup_ctrs()
68 CTRL_READ(low, high, msrs, i); in ppro_setup_ctrs()
75 CTRL_WRITE(low, high, msrs, i); in ppro_setup_ctrs()
85 ulong low, high; in ppro_check_ctrs() local
88 CTR_READ(low, high, msrs, i); in ppro_check_ctrs()
99 uint low, high; in ppro_start() local
100 CTRL_READ(low, high, msrs, 0); in ppro_start()
102 CTRL_WRITE(low, high, msrs, 0); in ppro_start()
[all …]
Dop_model_p4.c361 #define ESCR_READ(escr, high, ev, i) do {rdmsr(ev->bindings[(i)].escr_address, (escr), (high));} wh… argument
362 #define ESCR_WRITE(escr, high, ev, i) do {wrmsr(ev->bindings[(i)].escr_address, (escr), (high));} w… argument
372 #define CCCR_READ(low, high, i) do {rdmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0) argument
373 #define CCCR_WRITE(low, high, i) do {wrmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0) argument
488 unsigned int high = 0; in pmc_setup_one_p4_counter() local
512 ESCR_READ(escr, high, ev, i); in pmc_setup_one_p4_counter()
523 ESCR_WRITE(escr, high, ev, i); in pmc_setup_one_p4_counter()
526 CCCR_READ(cccr, high, VIRT_CTR(stag, ctr)); in pmc_setup_one_p4_counter()
535 CCCR_WRITE(cccr, high, VIRT_CTR(stag, ctr)); in pmc_setup_one_p4_counter()
549 unsigned int low, high; in p4_setup_ctrs() local
[all …]
Dop_model_athlon.c52 uint low, high; in athlon_setup_ctrs() local
57 CTRL_READ(low, high, msrs, i); in athlon_setup_ctrs()
59 CTRL_WRITE(low, high, msrs, i); in athlon_setup_ctrs()
72 CTRL_READ(low, high, msrs, i); in athlon_setup_ctrs()
79 CTRL_WRITE(low, high, msrs, i); in athlon_setup_ctrs()
89 uint low, high; in athlon_check_ctrs() local
93 CTR_READ(low, high, msrs, i); in athlon_check_ctrs()
105 uint low, high; in athlon_start() local
109 CTRL_READ(low, high, msrs, i); in athlon_start()
111 CTRL_WRITE(low, high, msrs, i); in athlon_start()
[all …]
/external/srec/srec/clib/
Dvoc_read.c169 const char* high; in get_prons() local
178 high = voc->last_entry; in get_prons()
181 middle = low + ((high - low) >> 1) - 1; in get_prons()
189 if (low == high) return 0; in get_prons()
192 if (middle == high) { in get_prons()
193 high -= 2; in get_prons()
194 while (*high != '\n') high--; in get_prons()
195 high++; in get_prons()
200 else high = middle; in get_prons()
214 high = middle; in get_prons()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodingInfo.java125 public boolean isInEncoding(char high, char low) { in isInEncoding() argument
134 return m_encoding.isInEncoding(high, low); in isInEncoding()
177 public boolean isInEncoding(char high, char low); in isInEncoding() argument
234 public boolean isInEncoding(char high, char low) { in isInEncoding() argument
236 int codePoint = Encodings.toCodePoint(high,low); in isInEncoding()
249 ret = m_before.isInEncoding(high,low); in isInEncoding()
262 ret = m_after.isInEncoding(high,low); in isInEncoding()
273 ret = inEncoding(high, low, m_encoding); in isInEncoding()
464 private static boolean inEncoding(char high, char low, String encoding) { in inEncoding() argument
468 cArray[0] = high; in inEncoding()
[all …]
DWriterToUTF8Buffered.java287 char high, low; in write() local
288 high = c; in write()
292 buf_loc[count_loc++] = (byte) (0xF0 | (((high + 0x40) >> 8) & 0xf0)); in write()
293 buf_loc[count_loc++] = (byte) (0x80 | (((high + 0x40) >> 2) & 0x3f)); in write()
294 buf_loc[count_loc++] = (byte) (0x80 | ((low >> 6) & 0x0f) + ((high << 4) & 0x30)); in write()
415 char high, low; in write() local
416 high = c; in write()
420 buf_loc[count_loc++] = (byte) (0xF0 | (((high + 0x40) >> 8) & 0xf0)); in write()
421 buf_loc[count_loc++] = (byte) (0x80 | (((high + 0x40) >> 2) & 0x3f)); in write()
422 buf_loc[count_loc++] = (byte) (0x80 | ((low >> 6) & 0x0f) + ((high << 4) & 0x30)); in write()
/external/qemu/elff/
Ddwarf_die.cc138 AddrType high; in contains_address() local
140 while (elf_file()->get_range(range_off, &low, &high) && in contains_address()
141 (low != 0 || high != 0)) { in contains_address()
142 if (address >= low && address < high) { in contains_address()
212 Elf_Xword low, high; in dump() local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) && in dump()
214 (low != 0 || high != 0)) { in dump()
216 (unsigned long long)low, (unsigned long long)high); in dump()
220 Elf_Word low, high; in dump() local
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) && in dump()
[all …]
/external/e2fsprogs/lib/blkid/
Dgetsize.c83 blkid_loff_t high, low; in blkid_get_dev_size() local
172 for (high = 1024; valid_offset(fd, high); high *= 2) in blkid_get_dev_size()
173 low = high; in blkid_get_dev_size()
174 while (low < high - 1) in blkid_get_dev_size()
176 const blkid_loff_t mid = (low + high) / 2; in blkid_get_dev_size()
181 high = mid; in blkid_get_dev_size()
/external/dropbear/libtomcrypt/src/pk/ecc/
Decc_sizes.c26 void ecc_sizes(int *low, int *high) in ecc_sizes() argument
30 LTC_ARGCHKVD(high != NULL); in ecc_sizes()
33 *high = 0; in ecc_sizes()
38 if (ltc_ecc_sets[i].size > *high) { in ecc_sizes()
39 *high = ltc_ecc_sets[i].size; in ecc_sizes()
/external/e2fsprogs/e2fsck/
Ddx_dirinfo.c83 int low, high, mid; in e2fsck_get_dx_dir_info() local
86 high = ctx->dx_dir_info_count-1; in e2fsck_get_dx_dir_info()
91 if (ino == ctx->dx_dir_info[high].ino) in e2fsck_get_dx_dir_info()
92 return &ctx->dx_dir_info[high]; in e2fsck_get_dx_dir_info()
94 while (low < high) { in e2fsck_get_dx_dir_info()
95 mid = (low+high)/2; in e2fsck_get_dx_dir_info()
96 if (mid == low || mid == high) in e2fsck_get_dx_dir_info()
101 high = mid; in e2fsck_get_dx_dir_info()
/external/openssl/crypto/bn/
Dbn_lcl.h268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
328 BN_ULONG high,low,ret,tmp=(a); \
330 BN_UMULT_LOHI(low,high,w,tmp); \
333 (c) += high; \
340 BN_ULONG high,low,ret,ta=(a); \
341 BN_UMULT_LOHI(low,high,w,ta); \
343 (c) = high; \
355 BN_ULONG high,low,ret,tmp=(a); \
[all …]
/external/libvpx/vp8/encoder/ppc/
Dencodemb_altivec.asm46 vmrghb v3, v0, v1 ;# unpack high src to short
47 vmrghb v4, v0, v2 ;# unpack high pred to short
60 vmrghb v3, v0, v1 ;# unpack high src to short
61 vmrglb v4, v0, v2 ;# unpack high pred to short
83 vmrghb v3, v0, v1 ;# unpack high src to short
84 vmrghb v4, v0, v2 ;# unpack high pred to short
97 vmrghb v3, v0, v1 ;# unpack high src to short
98 vmrglb v4, v0, v2 ;# unpack high pred to short
133 vmrghb v3, v0, v1 ;# unpack high src to short
134 vmrghb v4, v0, v2 ;# unpack high pred to short
/external/e2fsprogs/resize/
Dextent.c144 int low, high, mid; in ext2fs_extent_translate() local
154 high = extent->num-1; in ext2fs_extent_translate()
155 while (low <= high) { in ext2fs_extent_translate()
157 mid = (low+high)/2; in ext2fs_extent_translate()
159 if (low == high) in ext2fs_extent_translate()
164 highval = extent->list[high].old_loc; in ext2fs_extent_translate()
173 mid = low + ((int) (range * (high-low))); in ext2fs_extent_translate()
181 high = mid-1; in ext2fs_extent_translate()
/external/webkit/Source/WebCore/html/
DHTMLMeterElement.cpp147 double HTMLMeterElement::high() const in high() function in WebCore::HTMLMeterElement
149 double high = max(); in high() local
150 parseToDoubleForNumberType(getAttribute(highAttr), &high); in high()
151 return std::min(std::max(high, low()), max()); in high()
154 void HTMLMeterElement::setHigh(double high, ExceptionCode& ec) in setHigh() argument
156 if (!isfinite(high)) { in setHigh()
160 setAttribute(highAttr, String::number(high)); in setHigh()
182 double highValue = high(); in gaugeRegion()
/external/e2fsprogs/lib/ext2fs/
Dgetsize.c151 ext2_loff_t high, low; in ext2fs_get_device_size2() local
257 for (high = 1024; valid_offset (fd, high); high *= 2) in ext2fs_get_device_size2()
258 low = high; in ext2fs_get_device_size2()
259 while (low < high - 1) in ext2fs_get_device_size2()
261 const ext2_loff_t mid = (low + high) / 2; in ext2fs_get_device_size2()
266 high = mid; in ext2fs_get_device_size2()
/external/chromium/chrome/browser/resources/gpu_internals/
Dsorted_array_utils.js32 var high = ary.length - 1;
35 while (low <= high) {
36 i = Math.floor((low + high) / 2);
41 high = i - 1; continue;
44 high = i - 1;

12345678910>>...18