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

1 2 3 4 5 6 7 8 91011>>

  /development/simulator/wrapsim/
Util.h 4 int wsAtomicAdd(int *var, int val);
Util.c 4 int wsAtomicAdd(int *var, int val)
10 *var = *var + val;
  /external/qemu/
host-utils.h 52 static always_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...]
softmmu_defs.h 5 void REGPARM __stb_mmu(target_ulong addr, uint8_t val, int mmu_idx);
7 void REGPARM __stw_mmu(target_ulong addr, uint16_t val, int mmu_idx);
9 void REGPARM __stl_mmu(target_ulong addr, uint32_t val, int mmu_idx);
11 void REGPARM __stq_mmu(target_ulong addr, uint64_t val, int mmu_idx);
14 void REGPARM __stb_cmmu(target_ulong addr, uint8_t val, int mmu_idx);
16 void REGPARM __stw_cmmu(target_ulong addr, uint16_t val, int mmu_idx);
18 void REGPARM __stl_cmmu(target_ulong addr, uint32_t val, int mmu_idx);
20 void REGPARM __stq_cmmu(target_ulong addr, uint64_t val, int mmu_idx);
  /external/dbus/dbus/
dbus-marshal-basic.h 44 #define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val) ((dbus_uint16_t) ( \
45 (dbus_uint16_t) ((dbus_uint16_t) (val) >> 8) | \
46 (dbus_uint16_t) ((dbus_uint16_t) (val) << 8)))
48 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) ((dbus_uint32_t) ( \
49 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x000000ffU) << 24) | \
50 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x0000ff00U) << 8) | \
51 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x00ff0000U) >> 8) | \
52 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0xff000000U) >> 24)))
56 #define DBUS_UINT64_SWAP_LE_BE_CONSTANT(val) ((dbus_uint64_t) ( \
57 (((dbus_uint64_t) (val) &
    [all...]
  /build/tools/apriori/
common.h 14 short val = 0x10; local
15 return ((char *)&val)[0] != 0;
18 static inline long switch_endianness(long val)
21 ((char *)&newval)[3] = ((char *)&val)[0];
22 ((char *)&newval)[2] = ((char *)&val)[1];
23 ((char *)&newval)[1] = ((char *)&val)[2];
24 ((char *)&newval)[0] = ((char *)&val)[3];
  /build/tools/isprelinked/
common.h 14 short val = 0x10; local
15 return ((char *)&val)[0] != 0;
18 static inline long switch_endianness(long val)
21 ((char *)&newval)[3] = ((char *)&val)[0];
22 ((char *)&newval)[2] = ((char *)&val)[1];
23 ((char *)&newval)[1] = ((char *)&val)[2];
24 ((char *)&newval)[0] = ((char *)&val)[3];
  /external/qemu/hw/
pci_host.h 43 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
47 PCI_DPRINTF("writeb addr " TARGET_FMT_plx " val %x\n",
48 (target_phys_addr_t)addr, val);
50 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 1);
53 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
57 val = bswap16(val);
59 PCI_DPRINTF("writew addr " TARGET_FMT_plx " val %x\n",
60 (target_phys_addr_t)addr, val);
62 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 2)
80 uint32_t val; local
93 uint32_t val; local
108 uint32_t val; local
    [all...]
  /external/openssl/crypto/stack/
safestack.h 97 #define SKM_sk_set(type, st,i,val) \
98 sk_set(CHECKED_PTR_OF(STACK_OF(type), st), i, CHECKED_PTR_OF(type, val))
101 #define SKM_sk_push(type, st,val) \
102 sk_push(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
103 #define SKM_sk_unshift(type, st,val) \
104 sk_unshift(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
105 #define SKM_sk_find(type, st,val) \
106 sk_find(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
111 #define SKM_sk_insert(type, st,val,i) \
112 sk_insert(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val), i
    [all...]
  /external/openssl/include/openssl/
safestack.h 97 #define SKM_sk_set(type, st,i,val) \
98 sk_set(CHECKED_PTR_OF(STACK_OF(type), st), i, CHECKED_PTR_OF(type, val))
101 #define SKM_sk_push(type, st,val) \
102 sk_push(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
103 #define SKM_sk_unshift(type, st,val) \
104 sk_unshift(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
105 #define SKM_sk_find(type, st,val) \
106 sk_find(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val))
111 #define SKM_sk_insert(type, st,val,i) \
112 sk_insert(CHECKED_PTR_OF(STACK_OF(type), st), CHECKED_PTR_OF(type, val), i
    [all...]
  /external/bluetooth/glib/glib/
gtypes.h 129 #define GUINT16_SWAP_LE_BE_CONSTANT(val) ((guint16) ( \
130 (guint16) ((guint16) (val) >> 8) | \
131 (guint16) ((guint16) (val) << 8)))
133 #define GUINT32_SWAP_LE_BE_CONSTANT(val) ((guint32) ( \
134 (((guint32) (val) & (guint32) 0x000000ffU) << 24) | \
135 (((guint32) (val) & (guint32) 0x0000ff00U) << 8) | \
136 (((guint32) (val) & (guint32) 0x00ff0000U) >> 8) | \
137 (((guint32) (val) & (guint32) 0xff000000U) >> 24)))
139 #define GUINT64_SWAP_LE_BE_CONSTANT(val) ((guint64) ( \
140 (((guint64) (val) &
    [all...]
  /external/bluetooth/glib/
glibconfig.h.win32.in 54 #define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
56 #define G_GINT64_CONSTANT(val) (val##i64)
59 #define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
61 #define G_GUINT64_CONSTANT(val) (val##Ui64)
213 #define GINT16_TO_LE(val) ((gint16) (val))
    [all...]
glibconfig.h 55 #define G_GINT64_CONSTANT(val) (val##L)
56 #define G_GUINT64_CONSTANT(val) (val##UL)
81 #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
184 #define GINT16_TO_LE(val) ((gint16) (val))
185 #define GUINT16_TO_LE(val) ((guint16) (val))
    [all...]
  /external/opencore/protocols/sdp/common/include/
h264_payload_info.h 48 inline void setMaxMbps(int val)
50 max_mbps = (int)val;
58 inline void setMaxFs(int val)
60 max_fs = (int)val;
68 inline void setMaxCpb(int val)
70 max_cpb = (int)val;
78 inline void setMaxDpb(int val)
80 max_dpb = (int)val;
88 inline void setMaxBr(int val)
90 max_br = (int)val;
    [all...]
  /frameworks/base/tools/aapt/
Bundle.h 63 void setVerbose(bool val) { mVerbose = val; }
65 void setAndroidList(bool val) { mAndroidList = val; }
67 void setForce(bool val) { mForce = val; }
68 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; }
71 void setMakePackageDirs(bool val) { mMakePackageDirs = val; }
    [all...]
  /dalvik/libcore/luni/src/main/native/
java_lang_Character.cpp 22 static jint getData(JNIEnv* env, jclass clazz, jint val)
24 return Unicode::getPackedData(val);
30 static jint toLower(JNIEnv* env, jclass clazz, jint val)
32 return Unicode::toLower(val);
38 static jint toUpper(JNIEnv* env, jclass clazz, jint val)
40 return Unicode::toUpper(val);
46 static jint numericValue(JNIEnv* env, jclass clazz, jint val)
48 return Unicode::getNumericValue(val);
54 static jint toTitle(JNIEnv* env, jclass clazz, jint val)
56 return Unicode::toTitle(val);
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
percpu_32.h 25 #define percpu_to_op(op,var,val) do { typedef typeof(var) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(var)) { case 1: asm(op "b %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 2: asm(op "w %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 4: asm(op "l %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; default: __bad_percpu_size(); } } while (0)
30 #define x86_write_percpu(var,val) percpu_to_op("mov", per_cpu__##var, val)
31 #define x86_add_percpu(var,val) percpu_to_op("add", per_cpu__##var, val)
32 #define x86_sub_percpu(var,val) percpu_to_op("sub", per_cpu__##var, val
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
percpu_32.h 25 #define percpu_to_op(op,var,val) do { typedef typeof(var) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(var)) { case 1: asm(op "b %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 2: asm(op "w %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 4: asm(op "l %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; default: __bad_percpu_size(); } } while (0)
30 #define x86_write_percpu(var,val) percpu_to_op("mov", per_cpu__##var, val)
31 #define x86_add_percpu(var,val) percpu_to_op("add", per_cpu__##var, val)
32 #define x86_sub_percpu(var,val) percpu_to_op("sub", per_cpu__##var, val
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
percpu_32.h 25 #define percpu_to_op(op,var,val) do { typedef typeof(var) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(var)) { case 1: asm(op "b %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 2: asm(op "w %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; case 4: asm(op "l %1,"__percpu_seg"%0" : "+m" (var) :"ri" ((T__)val)); break; default: __bad_percpu_size(); } } while (0)
30 #define x86_write_percpu(var,val) percpu_to_op("mov", per_cpu__##var, val)
31 #define x86_add_percpu(var,val) percpu_to_op("add", per_cpu__##var, val)
32 #define x86_sub_percpu(var,val) percpu_to_op("sub", per_cpu__##var, val
    [all...]
  /dalvik/libcore/math/src/main/java/java/math/
BitLevel.java 41 static int bitLength(BigInteger val) {
43 val.establishOldRepresentation("BitLevel.bitLength");
45 if (val.sign == 0) {
48 int bLength = (val.numberLength << 5);
49 int highDigit = val.digits[val.numberLength - 1];
51 if (val.sign < 0) {
52 int i = val.getFirstNonzeroDigit();
54 if (i == val.numberLength - 1) {
64 static int bitCount(BigInteger val) {
182 int val = source[i]; local
    [all...]
  /external/kernel-headers/original/linux/
preempt.h 13 extern void fastcall add_preempt_count(int val);
14 extern void fastcall sub_preempt_count(int val);
16 # define add_preempt_count(val) do { preempt_count() += (val); } while (0)
17 # define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /frameworks/base/tests/CoreTests/android/core/
TreeMapTest.java 51 int val = mRandom.nextInt(1000); local
52 if (SPEW) System.out.println("Adding val = " + val);
53 if (val < minVal) {
54 minVal = val;
56 if (val > maxVal) {
57 maxVal = val;
59 tm.put(new Integer(val), "V:" + val);
60 hm.put(new Integer(val), "V:" + val)
85 int val = mRandom.nextInt(1000); local
    [all...]
  /external/dbus/tools/
dbus-print-message.c 66 char *val; local
67 dbus_message_iter_get_basic (iter, &val);
70 printf ("%s", val);
78 char *val; local
79 dbus_message_iter_get_basic (iter, &val);
82 printf ("%s", val);
90 char *val; local
91 dbus_message_iter_get_basic (iter, &val);
94 printf ("%s", val);
102 dbus_int16_t val; local
110 dbus_uint16_t val; local
118 dbus_int32_t val; local
126 dbus_uint32_t val; local
134 dbus_int64_t val; local
142 dbus_uint64_t val; local
150 double val; local
158 unsigned char val; local
166 dbus_bool_t val; local
    [all...]
  /external/stlport/test/unit/
math_aux.h 19 bool are_equals(_Tp val, _Tp ref) {
20 if (val < ref) {
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon();
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
  /system/extras/tests/bionic/libc/other/
test_aligned.c 7 read4( int o, unsigned val )
9 unsigned v = htonl(val);
17 printf( "read4: offset=%d value=%08x: ", o, val );
22 if (v2 != val) {
30 writ4( int o, unsigned val )
32 unsigned v = htonl(val);
35 printf( "writ4: offset=%d value=%08x: ", o, val );
45 if (v2 != val) {
53 read2( int o, unsigned val )
55 unsigned short v = htons(val);
    [all...]

Completed in 101 milliseconds

1 2 3 4 5 6 7 8 91011>>