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

1 23 4 5 6 7 8 91011>>

  /system/core/nexus/
DhcpState.cpp 24 char *DhcpState::toString(int val, char *buffer, int max) {
25 if (val == DhcpState::INIT)
27 else if (val == DhcpState::DISCOVERING)
29 else if (val == DhcpState::REQUESTING)
31 else if (val == DhcpState::BOUND)
33 else if (val == DhcpState::RENEWING)
35 else if (val == DhcpState::REBINDING)
37 else if (val == DhcpState::REBOOT)
39 else if (val == DhcpState::RENEW_REQUESTED)
41 else if (val == DhcpState::INIT_IPV4LL
    [all...]
  /external/bluetooth/glib/tests/
timeloop-closure.c 81 int val = 1; local
86 write_all (out_channel, (char *)&val, sizeof (val));
87 read_all (in_channel, (char *)&val, sizeof (val));
90 val = 0;
91 write_all (out_channel, (char *)&val, sizeof (val));
93 val = g_timer_elapsed (timer, NULL) * 1000;
95 write_all (out_channel, (char *)&val, sizeof (val))
106 int val; local
    [all...]
timeloop.c 80 int val = 1; local
85 write_all (out_channel, (char *)&val, sizeof (val));
86 read_all (in_channel, (char *)&val, sizeof (val));
89 val = 0;
90 write_all (out_channel, (char *)&val, sizeof (val));
92 val = g_timer_elapsed (timer, NULL) * 1000;
94 write_all (out_channel, (char *)&val, sizeof (val))
105 int val; local
    [all...]
  /dalvik/libcore/math/src/main/java/java/math/
Logical.java 39 static BigInteger not(BigInteger val) {
40 if (val.sign == 0) {
43 if (val.equals(BigInteger.MINUS_ONE)) {
46 int resDigits[] = new int[val.numberLength + 1];
49 if (val.sign > 0) {
50 // ~val = -val + 1
51 if (val.digits[val.numberLength - 1] != -1) {
52 for (i = 0; val.digits[i] == -1; i++)
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
byte_order.sgml 93 @val: a 32-bit integer value in host byte order.
94 @Returns: @val converted to network byte order.
102 @val: a 16-bit integer value in host byte order.
103 @Returns: @val converted to network byte order.
111 @val: a 32-bit integer value in network byte order.
112 @Returns: @val converted to host byte order.
120 @val: a 16-bit integer value in network byte order.
121 @Returns: @val converted to host byte order.
129 @val: a #gint value in big-endian byte order.
130 @Returns: @val converted to host byte order
    [all...]
  /bionic/libc/kernel/common/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 5 VAL();
  /external/stlport/test/unit/
memory_test.cpp 28 auto_ptr<int> CreateAutoPtr(int val)
29 { return auto_ptr<int>(new int(val)); }
31 bool CheckEquality(auto_ptr<int> pint, int val)
32 { return *pint == val; }
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
preempt.h 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0)
19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
  /packages/wallpapers/MusicVisualization/res/raw/
waveform.rs 50 float val = sinf(0.013 * (wave1pos + i)) * amp1
54 if (val < 2.f && val > -2.f) val = 2.f;
55 points[i*8+1] = val + off;
56 points[i*8+5] = -val + off;
84 float val = absf(points[i*8+1]);
85 val = val * FADEOUT_FACTOR;
86 if (val < 2.f) val = 2.f
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /dalvik/libcore/luni/src/main/native/
java_lang_Double.c 24 static jlong doubleToLongBits(JNIEnv* env, jclass clazz, jdouble val)
28 d.d = val;
42 static jlong doubleToRawLongBits(JNIEnv* env, jclass clazz, jdouble val)
46 d.d = val;
54 static jdouble longBitsToDouble(JNIEnv* env, jclass clazz, jlong val)
58 d.bits = val;
java_lang_Float.c 32 static jint floatToIntBits(JNIEnv* env, jclass clazz, jfloat val)
36 f.f = val;
50 static jint floatToRawBits(JNIEnv* env, jclass clazz, jfloat val)
54 f.f = val;
62 static jfloat intBitsToFloat(JNIEnv* env, jclass clazz, jint val)
66 f.bits = val;
  /external/icu4c/tools/genrb/
errmsg.c 36 void setShowWarning(UBool val)
38 gShowWarning = val;
49 void setStrict(UBool val){
50 gStrict = val;
56 void setVerbose(UBool val){
57 gVerbose = val;
  /external/qemu/tcg/hppa/
tcg-target.h 148 static inline void hppa_patch21l(uint32_t *insn, int val, int addend)
150 val = lrsel(val, addend);
151 *insn = mask(*insn, 21) | reassemble_21(val);
154 static inline void hppa_patch14r(uint32_t *insn, int val, int addend)
156 val = rrsel(val, addend);
157 *insn = mask(*insn, 14) | reassemble_14(val);
160 static inline void hppa_patch17r(uint32_t *insn, int val, int addend)
162 val = rrsel(val, addend)
    [all...]
  /dalvik/vm/alloc/
Float12.h 34 inline unsigned short intToFloat12(unsigned int val)
36 int oval = val;
44 unsigned int pval = val;
45 while (val > 0x1ff) {
46 pval = val;
47 val >>= 1;
53 val++;
54 if (val > 0x1ff) {
55 val = (val + 1) >> 1
    [all...]
  /dalvik/vm/jdwp/
ExpandBuf.c 123 void expandBufAdd1(ExpandBuf* pBuf, u1 val)
125 ensureSpace(pBuf, sizeof(val));
126 *(pBuf->storage + pBuf->curLen) = val;
133 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val)
135 ensureSpace(pBuf, sizeof(val));
136 set2BE(pBuf->storage + pBuf->curLen, val);
137 pBuf->curLen += sizeof(val);
143 void expandBufAdd4BE(ExpandBuf* pBuf, u4 val)
145 ensureSpace(pBuf, sizeof(val));
146 set4BE(pBuf->storage + pBuf->curLen, val);
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
unaligned.h 29 #define __put_unaligned_le(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_le((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_le((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_le((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; })
30 #define __put_unaligned_be(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_be((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_be((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_be((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; }
    [all...]

Completed in 226 milliseconds

1 23 4 5 6 7 8 91011>>