HomeSort by relevance Sort by last modified time
    Searched refs:low (Results 51 - 75 of 793) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/runtime/lib/
ctzti2.c 28 const di_int f = -(x.s.low == 0);
29 return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
ffsdi2.c 26 if (x.s.low == 0)
32 return __builtin_ctz(x.s.low) + 1;
ffsti2.c 28 if (x.s.low == 0)
34 return __builtin_ctzll(x.s.low) + 1;
floatundixf.c 37 fb.u.high.s.low = (e + 16383); /* exponent */
38 fb.u.low.all = a << clz; /* mantissa */
ashrdi3.c 32 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
lshrdi3.c 31 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
lshrti3.c 33 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
paritydi2.c 26 return __paritysi2(x.s.high ^ x.s.low);
floatdixf.c 40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */
42 fb.u.low.all = a << clz; /* mantissa */
  /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))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
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))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
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))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
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))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
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))
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
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/vm/
Bits.h 59 u4 low, high; local
65 low = pSrc[4];
66 low = (low << 8) | pSrc[5];
67 low = (low << 8) | pSrc[6];
68 low = (low << 8) | pSrc[7];
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,
41 tmp_key->low = low;
52 int *low, int *high, int *proto)
55 *low = key->low;
    [all...]
  /frameworks/rs/driver/
rsdIntrinsicInlines.h 86 static inline int4 clamp(int4 amount, int low, int high) {
88 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
89 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
90 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
91 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
95 static inline float4 clamp(float4 amount, float low, float high)
    [all...]
  /frameworks/support/renderscript/v8/rs_support/driver/
rsdIntrinsicInlines.h 86 static inline int4 clamp(int4 amount, int low, int high) {
88 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
89 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
90 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
91 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
95 static inline float4 clamp(float4 amount, float low, float high)
    [all...]
  /external/compiler-rt/lib/
lshrdi3.c 33 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
lshrti3.c 33 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
floatdixf.c 40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */
42 fb.u.low.all = a << clz; /* mantissa */
  /external/oprofile/module/ia64/
op_ia64_model.h 19 uint low; member in struct:op_saved_msr
  /frameworks/support/volley/tests/src/com/android/volley/
RequestTest.java 34 TestRequest low = new TestRequest(Priority.LOW); local
35 low.setSequence(sequence++);
36 TestRequest low2 = new TestRequest(Priority.LOW);
43 // "Low" should sort higher because it's really processing order.
44 assertTrue(low.compareTo(high) > 0);
45 assertTrue(high.compareTo(low) < 0);
46 assertTrue(low.compareTo(low2) < 0);
47 assertTrue(low.compareTo(immediate) > 0);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon21814
72 r.low = (unsigned HOST_WIDE_INT) cst;
94 r.low = cst;
106 return (HOST_WIDE_INT) cst.low;
115 return cst.low;
163 a.low = ~a.low;
173 a.low |= b.low;
183 a.low &= b.low
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon22207
72 r.low = (unsigned HOST_WIDE_INT) cst;
94 r.low = cst;
106 return (HOST_WIDE_INT) cst.low;
115 return cst.low;
163 a.low = ~a.low;
173 a.low |= b.low;
183 a.low &= b.low
    [all...]

Completed in 474 milliseconds

1 23 4 5 6 7 8 91011>>