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

1 2 3 4 5 6 7 8 91011>>

  /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, 4*(REG_REG0+1), &val) < 0)
7 return val;
  /external/strace/
upeek.c 41 long val; local
44 val = ptrace(PTRACE_PEEKUSER, (pid_t) tcp->pid, (void *) off, 0);
45 if (val == -1 && errno) {
52 *res = (unsigned long) val;
string_to_uint.c 44 long long val; local
50 val = strtoll(str, &end, 10);
52 if (str == end || val < 0 || (unsigned long long) val > max_val
53 || (val == LLONG_MAX && errno == ERANGE))
62 return 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:__anon335
  /device/linaro/bootloader/arm-trusted-firmware/lib/psci/
psci_mem_protect.c 14 int val; local
19 if (psci_plat_pm_ops->read_mem_protect(&val) < 0)
24 return val != 0;
  /external/clang/test/CodeGen/
2003-08-21-StmtExpr.c 5 unsigned long val; member in struct:__anon15750
  /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 26 long val[2]; member in struct:__anon22539
  /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);

Completed in 327 milliseconds

1 2 3 4 5 6 7 8 91011>>