HomeSort by relevance Sort by last modified time
    Searched full:high (Results 1 - 25 of 1912) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/armv5te/
OP_LONG_TO_INT.S 2 /* we ignore the high word, making this equivalent to a 32-bit reg move */
OP_CONST_WIDE.S 5 FETCH(r2, 3) @ r2<- hhhh (high middle)
7 FETCH(r3, 4) @ r3<- HHHH (high)
9 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
OP_CONST.S 5 FETCH(r1, 2) @ r1<- BBBB (high)
OP_CONST_WIDE_32.S 5 FETCH_S(r2, 2) @ r2<- ssssBBBB (high)
  /dalvik/vm/mterp/x86/
OP_LONG_TO_INT.S 2 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /external/stlport/src/
collate.cpp 32 string collate<char>::do_transform(const char* low, const char* high) const
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const {
37 for ( ; low < high; ++low)
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const {
57 for ( ; low < high; ++low)
  /dalvik/vm/
Bits.h 59 u4 low, high; local
61 high = pSrc[0];
62 high = (high << 8) | pSrc[1];
63 high = (high << 8) | pSrc[2];
64 high = (high << 8) | pSrc[3];
70 return ((u8) high << 32) | (u8) low;
101 u4 low, high; local
156 u4 low, high; local
204 u4 low, high; local
    [all...]
  /bionic/libm/src/
s_modf.c 39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
59 GET_HIGH_WORD(high,x);
60 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
65 u_int32_t high; local
67 GET_HIGH_WORD(high,x);
68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
s_fabs.c 27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_sizes.c 26 void ecc_sizes(int *low, int *high)
30 LTC_ARGCHKVD(high != NULL);
33 *high = 0;
38 if (ltc_ecc_sets[i].size > *high) {
39 *high = ltc_ecc_sets[i].size;
  /bionic/libc/kernel/arch-x86/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
BinarySearch.java 34 int low = 0, high = data.length() - 1; local
35 while (low <= high) {
36 int mid = (low + high) >> 1;
41 high = mid - 1;
59 int low = 0, mid = -1, high = data.length() - 1; local
60 while (low <= high) {
61 mid = (low + high) >> 1;
68 high = mid - 1;
  /external/oprofile/daemon/
opd_ibs.h 108 * IbsFetchLinAd high IbsOpRip high <-- Logical (virtual) RIP
110 * IbsFetchCtl high IbsOpData high
112 * IbsFetchPhysAd high IbsOpData2 high
114 * IbsOpData3 high
116 * IbsDcLinAd high
118 * IbsDcPhysAd high
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 int low, high, mid; local
86 high = ctx->dx_dir_info_count-1;
91 if (ino == ctx->dx_dir_info[high].ino)
92 return &ctx->dx_dir_info[high];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
101 high = mid;
  /dalvik/dx/tests/084-dex-high-register-moves/
info.txt 2 high registers are moved to and from low registers with
  /dalvik/vm/mterp/c/
OP_GOTO_32.c 4 offset |= ((s4) FETCH(2)) << 16; /* high-order 16 bits */
  /external/kernel-headers/original/asm-arm/arch/
gpio-switch.h 17 * high -> closed
20 * high -> connected
23 * high -> active
  /external/qemu/elff/
dwarf_die.cc 132 * where that routine is inlined), or a pair "low PC, and high PC" describing
138 AddrType high; local
140 while (elf_file()->get_range(range_off, &low, &high) &&
141 (low != 0 || high != 0)) {
142 if (address >= low && address < high) {
212 Elf_Xword low, high; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
214 (low != 0 || high != 0)) {
216 low, high);
220 Elf_Word low, high; local
    [all...]
  /external/srec/srec/clib/
voc_read.c 169 const char* high; local
178 high = voc->last_entry;
181 middle = low + ((high - low) >> 1) - 1;
189 if (low == high) return 0;
191 /* 'middle' aligned to 'high', so move 'high' down */
192 if (middle == high) {
193 high -= 2;
194 while (*high != '\n') high--
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 123 * the 16 low-order bits of the given integer value; the 16 high-order bits
214 // Adjust the end of the chunk if it ends on a high char
231 * and it is the high char of a high/low pair with
234 * The char array incorrectly ends in a high char
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
281 * Unicode: [1101 10ww] [wwzz zzyy] (high surrogate)
287 char high, low; local
288 high = c
415 char high, low; local
    [all...]
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationTest.java 41 HIGH (191, 250),
45 private int high; field in class:ConfigurationTest.Density
47 Density(int low, int high) {
49 this.high = high;
55 if (value >= d.low && value <= d.high) {
180 * WVGA | high (191-250) | normal
181 * FWVGA | high (191-250) | normal
198 // WVGA | high (191-250) | normal
199 new ScreenConfiguration(640, 480, Density.HIGH, Configuration.SCREENLAYOUT_SIZE_NORMAL, true)
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_CMP_LONG.S 6 * be resolved by only looking at the high word. This could be made
18 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
23 blt .L${opcode}_less @ signed compare on high part
  /external/ppp/pppd/
md4.h 39 ** If count is not a multiple of 8, MD4Update uses high bits of
50 ** Order is from low-order byte of buffer[0] to high-order byte
52 ** Each byte is printed with high-order hexadecimal digit first.

Completed in 240 milliseconds

1 2 3 4 5 6 7 8 91011>>