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

1 2 3 4 5

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
85 (__extension__ ((sizeof (Val1) == sizeof (double) \
86 || __builtin_classify_type (Val1) != 8) \
87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
88 : (sizeof (Val1) == sizeof (float)) \
89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
msr.h 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr))
32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2))
46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /development/ndk/platforms/android-5/arch-x86/include/asm/
msr.h 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr))
32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2))
46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
msr.h 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr))
32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2))
46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
msr.h 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr))
32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2))
46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /external/freetype/src/base/
ftlcdfil.c 50 FT_UInt val1, xx; local
53 val1 = line[0];
54 fir[0] = weights[2] * val1;
55 fir[1] = weights[3] * val1;
56 fir[2] = weights[4] * val1;
60 val1 = line[1];
61 fir[0] += weights[1] * val1;
62 fir[1] += weights[2] * val1;
63 fir[2] += weights[3] * val1;
64 fir[3] += weights[4] * val1;
109 FT_UInt val1, yy; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msr.h 24 #define rdmsr(msr,val1,val2) \
26 : "=a" (val1), "=d" (val2) \
37 #define wrmsr(msr,val1,val2) \
40 : "c" (msr), "a" (val1), "d" (val2))
65 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /external/dropbear/
dss.c 170 DEF_MP_INT(val1);
180 m_mp_init_multi(&val1, &val2, &val3, &val4, NULL);
195 /* let val1 = s' */
196 bytes_to_mp(&val1, &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
198 if (mp_cmp(&val1, key->q) != MP_LT) {
203 if (mp_invmod(&val1, key->q, &val2) != MP_OKAY) {
208 /* let val1 = SHA(M') = msghash */
209 bytes_to_mp(&val1, msghash, SHA1_HASH_SIZE);
212 if (mp_mulmod(&val1, &val2, key->q, &val3) != MP_OKAY) {
217 /* let val1 = r' *
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/
PackedStringTests.java 33 private static final String PACKED_STRING_TAGGED = "val1" + DELIMITER_TAG + "tag1" +
41 assertEquals("val1", ps.get("tag1"));
71 assertEquals("val1", b.get("tag1"));
82 assertEquals("val1", b.get("tag1"));
92 assertEquals("val1", b2.get("tag1"));
  /external/openssl/crypto/bn/
bn_exp2.c 127 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; local
154 val1[0] = BN_CTX_get(ctx);
156 if(!d || !r || !val1[0] || !val2[0]) goto err;
170 * Build table for a1: val1[i] := a1^(2*i + 1) mod m for i = 0 .. 2^(window1-1)
174 if (!BN_mod(val1[0],a1,m,ctx))
176 a_mod_m = val1[0];
187 if (!BN_to_montgomery(val1[0],a_mod_m,mont,ctx)) goto err;
190 if (!BN_mod_mul_montgomery(d,val1[0],val1[0],mont,ctx)) goto err;
195 if(((val1[i] = BN_CTX_get(ctx)) == NULL) |
    [all...]
  /external/chromium/base/
logging.h 396 #define DCHECK_EQ(val1, val2) \
397 while (false && (val1) == (val2)) NDEBUG_EAT_STREAM_PARAMETERS
399 #define DCHECK_NE(val1, val2) \
400 while (false && (val1) == (val2)) NDEBUG_EAT_STREAM_PARAMETERS
402 #define DCHECK_LE(val1, val2) \
403 while (false && (val1) == (val2)) NDEBUG_EAT_STREAM_PARAMETERS
405 #define DCHECK_LT(val1, val2) \
406 while (false && (val1) == (val2)) NDEBUG_EAT_STREAM_PARAMETERS
408 #define DCHECK_GE(val1, val2) \
409 while (false && (val1) == (val2)) NDEBUG_EAT_STREAM_PARAMETER
    [all...]
  /external/kernel-headers/original/asm-x86/
msr.h 93 #define rdmsr(msr,val1,val2) \
96 (val1) = (u32)__val; \
132 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
178 #define rdmsr(msr,val1,val2) \
180 : "=a" (val1), "=d" (val2) \
191 #define wrmsr(msr,val1,val2) \
194 : "c" (msr), "a" (val1), "d" (val2))
219 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2
    [all...]
  /external/kernel-headers/original/linux/mtd/
map.h 246 static inline int map_word_equal(struct map_info *map, map_word val1, map_word val2)
250 if (val1.x[i] != val2.x[i])
256 static inline map_word map_word_and(struct map_info *map, map_word val1, map_word val2)
262 r.x[i] = val1.x[i] & val2.x[i];
267 static inline map_word map_word_clr(struct map_info *map, map_word val1, map_word val2)
273 r.x[i] = val1.x[i] & ~val2.x[i];
278 static inline map_word map_word_or(struct map_info *map, map_word val1, map_word val2)
284 r.x[i] = val1.x[i] | val2.x[i];
291 static inline int map_word_bitsset(struct map_info *map, map_word val1, map_word val2)
296 if (val1.x[i] & val2.x[i]
    [all...]
  /external/chromium/googleurl/base/
logging.h 274 #define DCHECK_OP(name, op, val1, val2) \
276 logging::Check##name##Impl((val1), (val2), #val1 " " #op " " #val2)) \
297 #define DCHECK_EQ(val1, val2) DCHECK_OP(EQ, ==, val1, val2)
298 #define DCHECK_NE(val1, val2) DCHECK_OP(NE, !=, val1, val2)
299 #define DCHECK_LE(val1, val2) DCHECK_OP(LE, <=, val1, val2)
300 #define DCHECK_LT(val1, val2) DCHECK_OP(LT, < , val1, val2
    [all...]
  /external/v8/test/mjsunit/
object-define-property.js 60 var val1 = 0; variable
68 set: function() { val1++; },
69 get: function() { return val1; },
148 assertEquals(1, val1);
150 assertEquals(2, val1);
163 assertEquals(2, val1);
166 assertEquals(2, val1);
196 assertEquals(2, val1);
199 assertEquals(2, val1);
344 assertEquals(3, val1);
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 105 int val1 = mVizData[i * 2]; local
107 int val = val1 * val1 + val2 * val2;
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h 718 const T1& val1, const T2& val2) {\
719 if (val1 op val2) {\
724 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
725 << " vs " << FormatForComparisonFailureMessage(val2, val1);\
730 BiggestInt val1, BiggestInt val2);
    [all...]
  /external/bluetooth/glib/tests/gobject/
ifaceproperties.c 73 gint val1; member in struct:_BaseObject
223 base_object->val1 = g_value_get_int (value);
253 g_value_set_int (value, base_object->val1);
326 base_object->val1 = 42;
430 gint val1, val2, val3, val4; local
448 "prop1", &val1,
454 g_assert (val1 == 0x0101);
  /external/bluetooth/glib/gio/inotify/
inotify-kernel.c 475 g_timeval_lt (GTimeVal *val1,
478 if (val1->tv_sec < val2->tv_sec)
481 if (val1->tv_sec > val2->tv_sec)
484 /* val1->tv_sec == val2->tv_sec */
485 if (val1->tv_usec < val2->tv_usec)
492 g_timeval_eq (GTimeVal *val1,
495 return (val1->tv_sec == val2->tv_sec) && (val1->tv_usec == val2->tv_usec);
  /external/gtest/include/gtest/
gtest.h 764 const T1& val1, const T2& val2) {\
765 if (val1 op val2) {\
770 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
771 << " vs " << FormatForComparisonFailureMessage(val2, val1);\
776 BiggestInt val1, BiggestInt val2);
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /external/libxml2/include/libxml/
xpointer.h 51 xmlXPtrLocationSetMerge (xmlLocationSetPtr val1,
  /external/qemu/elff/
dwarf_utils.cc 24 #define DWARF_NAMEFY2(val1, val2) case val1: return "" #val1 " | " #val2 ""
  /external/bluetooth/glib/gio/fen/
fen-node.c 92 g_timeval_lt (GTimeVal *val1, GTimeVal *val2)
94 if (val1->tv_sec < val2->tv_sec)
97 if (val1->tv_sec > val2->tv_sec)
100 /* val1->tv_sec == val2->tv_sec */
101 if (val1->tv_usec < val2->tv_usec)
  /external/jpeg/
rdswitch.c 307 int ci, val1, val2; local
313 if (sscanf(arg, "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3)
317 if (val1 <= 0 || val1 > 4 || val2 <= 0 || val2 > 4) {
321 cinfo->comp_info[ci].h_samp_factor = val1;

Completed in 621 milliseconds

1 2 3 4 5