/external/llvm/test/Transforms/InstCombine/ |
D | 2008-01-14-VarArgTrampoline.ll | 3 %struct.FRAME.nest = type { i32, i32 (...)* } 9 declare i32 @f(%struct.FRAME.nest* nest , ...) 11 define i32 @nest(i32 %n) { 13 %FRAME.0 = alloca %struct.FRAME.nest, align 8 ; <%struct.FRAME.nest*> [#uses=3] 16 %tmp3 = getelementptr %struct.FRAME.nest* %FRAME.0, i32 0, i32 0 ; <i32*> [#uses=1] 18 %FRAME.06 = bitcast %struct.FRAME.nest* %FRAME.0 to i8* ; <i8*> [#uses=1] 19 …call void @llvm.init.trampoline( i8* %TRAMP.216.sub, i8* bitcast (i32 (%struct.FRAME.nest*, ...)* … 21 %tmp7 = getelementptr %struct.FRAME.nest* %FRAME.0, i32 0, i32 1 ; <i32 (...)**> [#uses=1]
|
D | 2011-09-03-Trampoline.ll | 5 declare i32 @f(i8 * nest, i32) 19 ; CHECK: %ret = call i32 @f(i8* nest null, i32 %n) 31 ; CHECK: %ret = call i32 @f(i8* nest null, i32 %n) 49 ; CHECK: %ret0 = call i32 @f(i8* nest null, i32 %n) 84 ; CHECK: %ret0 = call i32 @f(i8* nest null, i32 %n) 85 ; CHECK: %ret1 = call i32 @f(i8* nest null, i32 %n) 86 ; CHECK: %ret2 = call i32 @f(i8* nest null, i32 %n)
|
/external/iproute2/tc/ |
D | q_rr.c | 37 struct rtattr *nest; in rr_parse_opt() local 84 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt)); in rr_parse_opt() 87 addattr_nest_compat_end(n, nest); in rr_parse_opt()
|
D | q_prio.c | 36 struct rtattr *nest; in prio_parse_opt() local 89 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt)); in prio_parse_opt() 92 addattr_nest_compat_end(n, nest); in prio_parse_opt()
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
D | call_main.cc | 126 int start = 0, nest = 3; in DebugPrint() local 133 nest -= 2; in DebugPrint() 139 LOG(INFO) << std::setw(nest) << " " in DebugPrint() 143 nest += 2; in DebugPrint() 156 LOG(INFO) << std::setw(nest) << " " << "## TEXT REMOVED ##"; in DebugPrint() 159 LOG(INFO) << std::setw(nest) << " " in DebugPrint()
|
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
D | call_main.cc | 135 int start = 0, nest = 3; in DebugPrint() local 142 nest -= 2; in DebugPrint() 148 LOG(INFO) << std::setw(nest) << " " in DebugPrint() 152 nest += 2; in DebugPrint() 165 LOG(INFO) << std::setw(nest) << " " << "## TEXT REMOVED ##"; in DebugPrint() 168 LOG(INFO) << std::setw(nest) << " " in DebugPrint()
|
/external/iproute2/lib/ |
D | libnetlink.c | 586 struct rtattr *nest = NLMSG_TAIL(n); in addattr_nest() local 589 return nest; in addattr_nest() 592 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest) in addattr_nest_end() argument 594 nest->rta_len = (void *)NLMSG_TAIL(n) - (void *)nest; in addattr_nest_end() 610 struct rtattr *nest = (void *)start + NLMSG_ALIGN(start->rta_len); in addattr_nest_compat_end() local 613 addattr_nest_end(n, nest); in addattr_nest_compat_end()
|
/external/clang/test/PCH/ |
D | struct.h | 28 struct Nested { int x, y; } nest; member
|
/external/chromium_org/third_party/libjingle/source/talk/examples/pcp/ |
D | pcp_main.cc | 146 int start = 0, nest = 3; in DebugPrint() local 153 nest -= 2; in DebugPrint() 159 LOG(INFO) << std::setw(nest) << " " << std::string(buf + start, i + 1 - start); in DebugPrint() 162 nest += 2; in DebugPrint() 175 LOG(INFO) << std::setw(nest) << " " << "## TEXT REMOVED ##"; in DebugPrint() 179 LOG(INFO) << std::setw(nest) << " " << std::string(buf + start, i - start); in DebugPrint()
|
/external/iproute2/include/ |
D | libnetlink.h | 57 extern int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest); 59 extern int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
|
/external/mksh/src/ |
D | tree.c | 575 int nest = 0; in wdscan() local 599 nest++; in wdscan() 605 if (c == CSUBST && nest == 0) in wdscan() 607 nest--; in wdscan() 610 nest++; in wdscan() 615 if (c == wp[-1] && nest == 0) in wdscan() 618 nest--; in wdscan()
|
D | misc.c | 652 int nest = 0, bnest = 0; in has_globbing() local 684 nest++; in has_globbing() 694 } else if (nest) in has_globbing() 695 nest--; in has_globbing() 702 return (saw_glob && !in_bracket && !nest); in has_globbing() 890 int nest = 0; in pat_scan() local 895 if ((*++p == /*(*/ ')' && nest-- == 0) || in pat_scan() 896 (*p == '|' && match_sep && nest == 0)) in pat_scan() 899 nest++; in pat_scan()
|
/external/llvm/test/CodeGen/X86/ |
D | 2011-08-23-Trampoline.ll | 13 …perfect_hash_generators__select_char_position__build_identical_keys_sets* nest , i32, i32) nounwin…
|
/external/llvm/test/Bitcode/ |
D | attributes.ll | 52 define void @f9(i8* nest) 53 ; CHECK: define void @f9(i8* nest)
|
D | attributes-3.3.ll | 55 define void @f9(i8* nest) 56 ; CHECK: define void @f9(i8* nest)
|
/external/llvm/lib/Target/XCore/ |
D | XCoreCallingConv.td | 27 // The 'nest' parameter, if any, is passed in R11.
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_unittest.cc | 256 unittest::TestAllTypes::NestedMessage* nest = in TEST() local 259 ASSERT_TRUE(nest != NULL); in TEST() 260 EXPECT_EQ(1, nest->bb()); in TEST() 261 delete nest; in TEST() 300 unittest::TestAllTypes::NestedMessage* nest = in TEST() local 302 ASSERT_TRUE(nest != NULL); in TEST() 305 message.set_allocated_optional_nested_message(nest); in TEST()
|
/external/clang/test/Sema/ |
D | block-return.c | 84 …int (^nested)(char *s) = ^(char *str) { void (^nest)(void) = ^(void) { printf("%s\n", str); }; nex… in foo4()
|
/external/skia/tests/ |
D | TDStackNesterTest.cpp | 58 nester->nest(); in test_nest()
|
/external/llvm/test/CodeGen/XCore/ |
D | trampoline.ll | 25 define internal i32 @g.1101(%struct.FRAME.f* nocapture nest %CHAIN.1) nounwind readonly {
|
/external/dnsmasq/src/ |
D | option.c | 24 static void one_file(char *file, int nest, int hard_opt); 978 static char *one_opt(int option, char *arg, char *gen_prob, int nest) in one_opt() argument 991 if (nest == 0) in one_opt() 1024 one_file(file, nest, 0); in one_opt() 1092 one_file(path, nest + 1, 0); in one_opt() 2531 static void one_file(char *file, int nest, int hard_opt) in one_file() argument 2560 if (nest > 20) in one_file() 2565 if (errno == ENOENT && nest == 0) in one_file() 2689 errmess = one_opt(option, arg, _("error"), nest + 1); in one_file() 2783 int option, nest = 0, testmode = 0; in read_opts() local [all …]
|
/external/chromium/build/ |
D | features_override.gypi | 74 # We have to nest variables inside variables so that they can be overridden
|
/external/chromium_org/third_party/WebKit/Source/build/ |
D | features.gypi | 43 # We have to nest variables inside variables so that they can be overridden
|
/external/llvm/lib/Target/X86/ |
D | X86CallingConv.td | 202 // The 'nest' parameter, if any, is passed in R10. 263 // The 'nest' parameter, if any, is passed in R10. 388 // The 'nest' parameter, if any, is passed in ECX. 403 // The 'nest' parameter, if any, is passed in EAX. 436 // The 'nest' parameter, if any, is passed in EAX.
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
D | tile_page.css | 66 /* NOTE: Dopplegangers nest themselves inside of other tiles, so don't
|