HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 1 - 25 of 3437) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
throw-expressions.cpp 3 int val = 42; variable
5 return throw val, val;
9 return val ? throw val : val;
19 return 1 ? throw val : val;
switch-case-folding-2.cpp 5 int test(int val){
6 switch (val) {
switch-case-folding-1.cpp 4 int test(int val){
8 switch (val) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
conv.h 38 #define snd_host_to_LE_16(val) __cpu_to_le16(val)
40 #define snd_LE_to_host_16(val) __le16_to_cpu(val)
42 #define snd_host_to_LE_32(val) __cpu_to_le32(val)
44 #define snd_LE_to_host_32(val) __le32_to_cpu(val)
46 #define snd_host_to_BE_16(val) __cpu_to_be16(val)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
conv.h 38 #define snd_host_to_LE_16(val) __cpu_to_le16(val)
40 #define snd_LE_to_host_16(val) __le16_to_cpu(val)
42 #define snd_host_to_LE_32(val) __cpu_to_le32(val)
44 #define snd_LE_to_host_32(val) __le32_to_cpu(val)
46 #define snd_host_to_BE_16(val) __cpu_to_be16(val)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
conv.h 38 #define snd_host_to_LE_16(val) __cpu_to_le16(val)
40 #define snd_LE_to_host_16(val) __le16_to_cpu(val)
42 #define snd_host_to_LE_32(val) __cpu_to_le32(val)
44 #define snd_LE_to_host_32(val) __le32_to_cpu(val)
46 #define snd_host_to_BE_16(val) __cpu_to_be16(val)
    [all...]
  /external/qemu/
host-utils.h 52 static inline int clz32(uint32_t val)
55 if (val)
56 return __builtin_clz(val);
62 if (!(val & 0xFFFF0000U)) {
64 val <<= 16;
66 if (!(val & 0xFF000000U)) {
68 val <<= 8;
70 if (!(val & 0xF0000000U)) {
72 val <<= 4;
74 if (!(val & 0xC0000000U))
    [all...]
  /external/clang/test/SemaCXX/
PR9884.cpp 4 Base(int val);
10 Derived(int val);
14 Derived::Derived(int val)
15 : Base( val )
  /external/elfutils/host-darwin-fixup/
byteswap.h 20 static inline unsigned short bswap_16(unsigned short val)
22 return ((val & 0xff) << 8) | ((val >> 8) & 0xff);
25 static inline unsigned long bswap_32(unsigned long val)
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
31 static inline unsigned long long bswap_64(unsigned long long val)
33 return ((((unsigned long long)bswap_32(val)) << 32) |
34 (((unsigned long long)bswap_32(val >> 32)) & 0xffffffffULL));
  /external/linux-tools-perf/host-darwin-fixup/
byteswap.h 20 static inline unsigned short bswap_16(unsigned short val)
22 return ((val & 0xff) << 8) | ((val >> 8) & 0xff);
25 static inline unsigned long bswap_32(unsigned long val)
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
31 static inline unsigned long long bswap_64(unsigned long long val)
33 return ((((unsigned long long)bswap_32(val)) << 32) |
34 (((unsigned long long)bswap_32(val >> 32)) & 0xffffffffULL));
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPbufferSurface.cpp 18 bool EglPbufferSurface::setAttrib(EGLint attrib,EGLint val) {
21 if(val < 0) return false;
22 m_width = val;
25 if(val < 0) return false;
26 m_height = val;
29 m_largest = val;
32 if(val != EGL_NO_TEXTURE && val != EGL_TEXTURE_RGB && val != EGL_TEXTURE_RGBA) return false;
33 m_texFormat = val;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Protect.h 30 inline void gcProtect(JSCell* val)
32 Heap::heap(val)->protect(val);
35 inline void gcUnprotect(JSCell* val)
37 Heap::heap(val)->unprotect(val);
40 inline void gcProtectNullTolerant(JSCell* val)
42 if (val)
43 gcProtect(val);
46 inline void gcUnprotectNullTolerant(JSCell* val)
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.h 44 #define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val) bswap_16(val)
45 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) bswap_32(val)
48 #define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val) ((dbus_uint16_t) ( \
49 (dbus_uint16_t) ((dbus_uint16_t) (val) >> 8) | \
50 (dbus_uint16_t) ((dbus_uint16_t) (val) << 8)))
52 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) ((dbus_uint32_t) ( \
53 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x000000ffU) << 24) | \
54 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x0000ff00U) << 8) |
    [all...]
  /external/clang/test/Parser/
cxx-reference.cpp 6 int val; variable
16 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
17 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
18 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
  /bionic/libc/kernel/arch-x86/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/
T_iget_2.java 21 public float val = 123.0f; field in class:T_iget_2
24 return val;
T_iget_9.java 21 public float val = 123.0f; field in class:T_iget_9
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_wide/d/
T_iget_wide_2.java 21 public double val = 123.0d; field in class:T_iget_wide_2
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_4.java 21 static long val = 123456789l; field in class:T_invoke_static_4
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/d/
T_sget_2.java 21 public static float val = 123.0f; field in class:T_sget_2
24 return val;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_wide/d/
T_sget_wide_2.java 21 public static double val = 123.0d; field in class:T_sget_wide_2
24 return val;
  /development/ndk/platforms/android-9/arch-x86/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /external/clang/test/CodeGen/
2010-01-13-MemBarrier.c 7 unsigned t(uint32_t *ptr, uint32_t val) {
10 return __sync_lock_test_and_set(ptr, val);
  /external/kernel-headers/original/asm-x86/
unaligned.h 26 * @val: value to place
35 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))

Completed in 329 milliseconds

1 2 3 4 5 6 7 8 91011>>