HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 1 - 25 of 2762) 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;
  /prebuilt/linux-x86/toolchain/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...]
  /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 )
  /development/tools/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 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /cts/tools/dx-tests/src/dxc/junit/opcodes/getfield/jm/
T_getfield_2.java 21 public double val = 123.0d; field in class:T_getfield_2
24 return val;
T_getfield_3.java 21 public double val = 123.0d; field in class:T_getfield_3
24 return val;
  /cts/tools/dx-tests/src/dxc/junit/opcodes/getstatic/jm/
T_getstatic_2.java 21 public static double val = 123.0d; field in class:T_getstatic_2
24 return val;