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

12 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/
clzti2.c 28 const di_int f = -(x.s.high == 0);
29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
ffsdi2.c 28 if (x.s.high == 0)
30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
ffsti2.c 30 if (x.s.high == 0)
32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
fixunsxfdi.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
ashldi3.c 33 result.s.high = input.s.low << (b - bits_in_word);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
ashlti3.c 33 result.s.high = input.s.low << (b - bits_in_dword);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
fixdfti.c 33 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
36 ti_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
fixunsdfti.c 36 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
37 if (e < 0 || (fb.u.s.high & 0x80000000))
fixunsxfti.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
fixxfdi.c 35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
fixxfti.c 35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
multi3.c 33 r.s.high = t >> bits_in_dword_2;
38 r.s.high += t >> bits_in_dword_2;
39 r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2);
54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
  /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)
  /ndk/sources/cxx-stl/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...]
  /external/libsepol/src/
port_record.c 9 /* Low - High range. Same for single ports. */
10 int low, high; member in struct:sepol_port
20 /* Low - High range. Same for single ports. */
21 int low, high; member in struct:sepol_port_key
29 int low, int high, int proto,
42 tmp_key->high = high;
52 int *low, int *high, int *proto)
56 *high = key->high;
    [all...]
  /external/compiler-rt/lib/ppc/
floatunditf.c 18 doublebits high = { .d = twop84 }; local
21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
24 const double high_addend = high.d - twop84_plus_twop52;
  /external/oprofile/module/ia64/
op_ia64_model.h 18 uint high; member in struct:op_saved_msr
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 5 uint64_t high; member in struct:__anon17257
35 val.high = 0;
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
58 op1.high = op1.low = 42;
60 op3.high = op3.low = 0xdeadbeefdeadbabeull;
69 op1.high = op1.low = 42;
cdsg.c 5 uint64_t high; member in struct:__anon17258
37 op2.high = op2.low = 42;
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
46 op1.high = op1.low = 42;
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
56 op1.high = op1.low = 42;
  /prebuilts/ndk/4/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))
  /prebuilts/ndk/4/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))
  /prebuilts/ndk/6/platforms/android-9/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))
  /prebuilts/ndk/7/platforms/android-14/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))
  /prebuilts/ndk/7/platforms/android-9/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))

Completed in 1373 milliseconds

12 3 4 5 6 7 8 91011>>