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

1 2 3 4 5

  /external/valgrind/main/memcheck/tests/darwin/
env.c 11 char* val2 = "xx"; local
17 setenv("MYVAR", val2, /*overwrite*/1); // makes a copy which is later leaked
18 assert( 0 == strcmp(getenv("MYVAR"), val2) );
20 setenv("MYVAR", val3, /*overwrite*/0); // doesn't overwrite MYVAR=val2
21 assert( 0 == strcmp(getenv("MYVAR"), val2) );
  /external/chromium/testing/
gtest_mac.h 38 #define EXPECT_NSNE(val1, val2) \
39 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNSNE, val1, val2)
43 #define ASSERT_NSNE(val1, val2) \
44 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNSNE, val1, val2)
  /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-9/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)
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/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/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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msr.h 23 #define rdmsr(msr,val1,val2) \
25 : "=a" (val1), "=d" (val2) \
36 #define wrmsr(msr,val1,val2) \
39 : "c" (msr), "a" (val1), "d" (val2))
64 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
  /external/openssl/crypto/bn/
bn_exp2.c 127 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; local
155 val2[0] = BN_CTX_get(ctx);
156 if(!d || !r || !val1[0] || !val2[0]) goto err;
204 * Build table for a2: val2[i] := a2^(2*i + 1) mod m for i = 0 .. 2^(window2-1)
208 if (!BN_mod(val2[0],a2,m,ctx))
210 a_mod_m = val2[0];
220 if (!BN_to_montgomery(val2[0],a_mod_m,mont,ctx)) goto err;
223 if (!BN_mod_mul_montgomery(d,val2[0],val2[0],mont,ctx)) goto err;
228 if(((val2[i] = BN_CTX_get(ctx)) == NULL) |
    [all...]
  /external/chromium/base/
logging.h 494 #define CHECK_OP(name, op, val1, val2) \
496 logging::Check##name##Impl((val1), (val2), \
497 #val1 " " #op " " #val2)) \
523 #define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
524 #define CHECK_NE(val1, val2) CHECK_OP(NE, !=, val1, val2)
525 #define CHECK_LE(val1, val2) CHECK_OP(LE, <=, val1, val2)
526 #define CHECK_LT(val1, val2) CHECK_OP(LT, < , val1, val2
    [all...]
  /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/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/chromium/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h     [all...]
  /external/clang/test/SemaTemplate/
instantiate-c99.cpp 43 typename Val1, typename Val2>
45 void f(Val1 val1, Val2 val2) {
48 [Subscript2] = val2 // expected-error{{exceeds array bounds}}
  /external/llvm/include/llvm/Support/
Format.h 99 T2 Val2;
101 format_object2(const char *fmt, const T1 &val1, const T2 &val2)
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
106 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
117 T2 Val2;
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3)
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
125 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3)
    [all...]
  /external/qemu/
osdep.h 135 const struct timeval *val2,
138 res->tv_sec = val1->tv_sec - val2->tv_sec;
139 if (val1->tv_usec < val2->tv_usec) {
141 res->tv_usec = val1->tv_usec - val2->tv_usec + 1000 * 1000;
143 res->tv_usec = val1->tv_usec - val2->tv_usec;
  /external/dropbear/
dss.c 171 DEF_MP_INT(val2);
180 m_mp_init_multi(&val1, &val2, &val3, &val4, NULL);
202 /* let val2 = w = (s')^-1 mod q*/
203 if (mp_invmod(&val1, key->q, &val2) != MP_OKAY) {
212 if (mp_mulmod(&val1, &val2, key->q, &val3) != MP_OKAY) {
224 if (mp_mulmod(&val1, &val2, key->q, &val4) != MP_OKAY) {
229 /* val2 = g^u1 mod p */
230 if (mp_exptmod(key->g, &val3, key->p, &val2) != MP_OKAY) {
238 if (mp_mulmod(&val2, &val3, key->p, &val4) != MP_OKAY) {
241 /* val2 = v = (((g)^u1 (y)^u2) mod p) mod q *
    [all...]
  /external/kernel-headers/original/asm-x86/
msr.h 93 #define rdmsr(msr,val1,val2) \
97 (val2) = (u32)(__val >> 32); \
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/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
Visualization3RS.java 102 int val2 = mVizData[i * 2 + 1]; local
103 int val = val1 * val1 + val2 * val2;
  /external/clang/test/Sema/
switch.c 231 val2, enumerator in enum:__anon5132
239 case val2:
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 266 int val2 = iter + 3; local
267 int expected = val1 + val2; // Expect to get the sum back
269 send.writeInt32(val2);
314 int val1, val2; local
333 val2 = data.readInt32();
334 reply->writeInt32(val1 + val2);
  /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...]

Completed in 1097 milliseconds

1 2 3 4 5