HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 251 - 275 of 661) sorted by null

<<11121314151617181920>>

  /external/qemu/fpu/
softfloat.c 589 return a.high & 0x7FFF;
601 return a.high>>15;
633 z.high = ( ( (uint16_t) zSign )<<15 ) + zExp;
    [all...]
  /external/icu4c/common/
usc_impl.c 271 UChar high = scriptRun->textArray[scriptRun->scriptLimit]; local
272 UChar32 ch = high;
277 * if the character is a high surrogate and it's not the last one
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
337 * end it before the high surrogate
  /external/icu4c/tools/tzcode/
icuzdump.cpp 199 void dumpZone(ostream& out, const char* linesep, UnicodeString tzid, int32_t low, int32_t high) {
289 int32_t high = 2038; local
316 << "\t values are 1902(low) and 2038(high)." << endl;
339 high = atoi(options[kOptCutover].value);
343 high = atoi(comma + 1);
349 dumper.setHighYear(high);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm.h 499 u_int32_t low, high; local
501 high = *n >> 32;
502 if (high) {
503 u_int32_t high1 = high % div;
504 high /= div;
506 *n = (u_int64_t)high << 32 | low;
514 static inline void divl(u_int32_t high, u_int32_t low,
518 u_int64_t n = (u_int64_t)high << 32 | low;
545 u_int32_t low, high; local
547 high = *n >> 32
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm.h 499 u_int32_t low, high; local
501 high = *n >> 32;
502 if (high) {
503 u_int32_t high1 = high % div;
504 high /= div;
506 *n = (u_int64_t)high << 32 | low;
514 static inline void divl(u_int32_t high, u_int32_t low,
518 u_int64_t n = (u_int64_t)high << 32 | low;
545 u_int32_t low, high; local
547 high = *n >> 32
    [all...]
  /external/kernel-headers/original/asm-x86/
paravirt.h 99 int entrynum, u32 low, u32 high);
101 int entrynum, u32 low, u32 high);
103 int entrynum, u32 low, u32 high);
362 * in low,high order.
564 static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
566 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
623 #define rdpmc(counter,low,high) do { \
626 high = _l >> 32; \
662 static inline void write_ldt_entry(void *dt, int entry, u32 low, u32 high)
664 PVOP_VCALL4(pv_cpu_ops.write_ldt_entry, dt, entry, low, high);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 212 long high = cases.get(sz - 1); local
213 long result = ((high - low + 1)) * 2 + 4;
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 213 long high = cases.get(sz - 1); local
214 long result = ((high - low + 1)) * 2 + 4;
  /dalvik/vm/compiler/codegen/
Ralloc.h 126 int low, int high);
129 int low, int high);
  /dalvik/vm/compiler/codegen/mips/
Ralloc.h 130 int low, int high);
133 int low, int high);
  /dalvik/vm/mterp/armv5te/
OP_CMP_LONG.S 10 * be resolved by only looking at the high word. This could be made
22 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
35 blt .L${opcode}_less @ signed compare on high part
OP_CONST_STRING_JUMBO.S 7 FETCH(r1, 2) @ r1<- BBBB (high)
  /dalvik/vm/mterp/mips/
OP_MUL_LONG.S 39 STORE64(v0, v1, a0) # vAA::vAA+1 <- v0(low) :: v1(high)
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 213 long high = cases.get(sz - 1); local
214 long result = ((high - low + 1)) * 2 + 4;
  /external/e2fsprogs/lib/ext2fs/
icount.c 343 int low, high, mid; local
364 high = (int) icount->count-1;
365 while (low <= high) {
367 mid = (low+high)/2;
369 if (low == high)
374 highval = icount->list[high].ino;
388 mid = low + ((int) (range * (high-low)));
396 high = mid-1;
402 * low (where high will be left at low-1).
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
TypesReader.java 107 long high = ((arr[pos++] & 0xff) << 24) | ((arr[pos++] & 0xff) << 16) | ((arr[pos++] & 0xff) << 8) local
113 return (high << 32) | (low & 0xffffffffl); /* see Java language spec (15.22.1, 5.6.2) */
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
TransportManager.java 68 int high; field in class:TransportManager.HandlerEntry
536 public void registerMessageHandler(MessageHandler mh, int low, int high)
541 he.high = high;
549 public void removeMessageHandler(MessageHandler mh, int low, int high)
556 if ((he.mh == mh) && (he.low == low) && (he.high == high))
831 if ((he.low <= type) && (type <= he.high))
  /external/icu4c/test/perf/normperf/
dtfmtrtperf.h 90 UDate low, high; local
94 high = cal->getTime(*status);
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 145 int high = iter.s32bitAt(index += 4); local
146 int end = (high - low + 1) * 4 + (index += 4);
  /external/qemu/target-arm/
neon_helper.c 1299 uint32_t high; local
1309 high = x >> 32;
1310 if (high & 0x80000000) {
1311 high = 0;
1313 } else if (high > 0xffff) {
1314 high = 0xffff;
1317 return low | (high << 16);
1322 uint32_t high; local
1329 high = x >> 32;
1330 if (high > 0xffff)
1340 int32_t high; local
1415 uint64_t high = (uint16_t)(x >> 16); local
1421 uint64_t high = (int16_t)(x >> 16); local
1461 uint32_t high = b + (b >> 32); local
1486 uint32_t low, high; local
1662 uint32_t high = -(x >> 32); local
    [all...]
  /hardware/msm7k/librpc/
rpc.c 57 if (!XDR_SEND_UINT32(xdr, &accreply->u.versions.high))
88 if (!XDR_SEND_UINT32(xdr, &rejreply->u.versions.high))
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMath.java 25 public static float clamp(float i, float low, float high) {
26 return Math.max(Math.min(i, high), low);
  /external/chromium/chrome/browser/safe_browsing/
filter_false_positive_perftest.cc 195 int high = prefixes.size() - 1; local
196 while (low <= high) {
197 int mid = ((unsigned int)low + (unsigned int)high) >> 1;
204 high = mid - 1;
  /external/openfst/src/include/fst/extensions/far/
sttable.h 250 size_t low = 0, high = positions.size() - 1; local
252 while (low < high) {
253 size_t mid = (low + high)/2;
258 high = mid;
  /external/oprofile/module/x86/
op_nmi.c 224 counters->saved[i].high);
230 controls->saved[i].high);
253 controls->saved[i].high);
261 counters->saved[i].high);

Completed in 628 milliseconds

<<11121314151617181920>>