/external/clang/test/Modules/ |
separate_map_tree.cpp | 8 const int val = common + b + c + c_; variable
|
modular_maps.cpp | 19 const int val = a + b + c + x; variable
|
/external/compiler-rt/test/BlocksRuntime/ |
goto.c | 21 __block int val = 0; local 23 ^{ val = 1; }(); 25 if (val == 0) { 26 goto out_bad; // error: local byref variable val is in the scope of this goto 32 printf("%s: val not updated!\n", argv[0]);
|
/external/libunwind/src/unwind/ |
GetBSP.c | 32 unw_word_t val; local 34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val); 35 return val;
|
GetCFA.c | 31 unw_word_t val; local 33 unw_get_reg (&context->cursor, UNW_REG_SP, &val); 34 return val;
|
GetGR.c | 31 unw_word_t val; local 38 unw_get_reg (&context->cursor, index, &val); 39 return val;
|
GetIP.c | 31 unw_word_t val; local 33 unw_get_reg (&context->cursor, UNW_REG_IP, &val); 34 return val;
|
GetIPInfo.c | 34 unw_word_t val; local 36 unw_get_reg (&context->cursor, UNW_REG_IP, &val); 38 return val;
|
/external/strace/linux/sh/ |
arch_getrval2.c | 4 unsigned long val; local 5 if (upeek(tcp->pid, 4*(REG_REG0+1), &val) < 0) 7 return val;
|
/external/strace/ |
upeek.c | 41 long val; local 44 val = ptrace(PTRACE_PEEKUSER, (pid_t) pid, (void *) off, 0); 45 if (val == -1 && errno) { 51 *res = (unsigned long) val;
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue5740a.c | 5 static int volatile val = 2; variable 8 return val;
|
issue5740b.c | 5 static int volatile val = 3; variable 8 return val;
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue5740a.c | 5 static int volatile val = 2; variable 8 return val;
|
issue5740b.c | 5 static int volatile val = 3; variable 8 return val;
|
/art/test/434-invoke-direct/src/ |
InvokeDirectSuper.java | 18 public int val; field in class:InvokeDirectSuper 21 return val;
|
/art/test/435-new-instance/src/ |
TestClass.java | 19 public int val; field in class:TestClass
|
/bionic/libc/kernel/uapi/asm-mips/asm/ |
posix_types.h | 26 long val[2]; member in struct:__anon298
|
/development/ndk/platforms/android-21/arch-mips/include/asm/ |
posix_types.h | 27 long val[2]; member in struct:__anon1637
|
/development/ndk/platforms/android-21/arch-mips64/include/asm/ |
posix_types.h | 27 long val[2]; member in struct:__anon1649
|
/external/clang/test/CodeGen/ |
2003-08-21-StmtExpr.c | 5 unsigned long val; member in struct:__anon14779
|
/external/clang/test/Parser/ |
cxx-ambig-init-templ.cpp | 3 template<int> struct c { c(int) = delete; typedef void val; operator int() const; }; typedef in struct:c 5 int val; variable 8 int k1 = a < b < c, d > ::val, e1; 9 int k2 = a < b, c < d > ::val, e2; 10 int k3 = b < a < c, d > ::val, e3; 11 int k4 = b < c, x, y = d > ::val, e4; 13 int k6 = T2 < b, &S::operator= >::val; 15 int k8 = T2 < b, &S::operator> >::val; 24 int k1 = a < b < c, d > ::val, 25 int k2 = b < a < c, d > ::val, [all...] |
/external/compiler-rt/test/asan/TestCases/Helpers/ |
initialization-nobug-extra.cc | 9 static int val = getStructWithDtorValue(); variable
|
/external/kernel-headers/original/uapi/asm-mips/asm/ |
posix_types.h | 25 long val[2]; member in struct:__anon21142
|
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/ |
reg_access_test.c | 18 uint64_t val, expected; local 24 val = mfspr(SPRN_BESCR); 26 FAIL_IF(val != expected); 30 val = mfspr(SPRN_EBBHR); 32 FAIL_IF(val != expected);
|
/external/llvm/test/tools/dsymutil/Inputs/ |
basic3.c | 3 volatile int val; variable 8 return foo(val); 12 return ++val; 19 return foo(val + arg);
|