| /src/external/bsd/atf/dist/atf-c/ |
| tc_test.c | 112 ATF_TC(vars); variable 113 ATF_TC_HEAD(vars, tc) 118 ATF_TC_BODY(vars, tcin) 184 ATF_TP_ADD_TC(tp, vars);
|
| config.c | 47 } vars[] = { variable in typeref:struct:var 116 for (var = vars; var->name != NULL; var++) { 143 for (var = vars; value == NULL && var->name != NULL; var++) 158 for (var = vars; var->name != NULL; var++)
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_debugging.cc | 30 InternalMmapVector<StackVarDescr> vars; local 31 vars.reserve(16); 32 if (!ParseFrameDescription(frame_descr, &vars)) { 36 for (uptr i = 0; i < vars.size(); i++) { 37 if (offset <= vars[i].beg + vars[i].size) { 41 internal_strlcpy(name, vars[i].name_pos, 42 Min(name_size, vars[i].name_len + 1)); 43 region_address = addr - (offset - vars[i].beg); 44 region_size = vars[i].size [all...] |
| asan_descriptions.cc | 381 InternalMmapVector<StackVarDescr> vars; local 382 vars.reserve(16); 383 if (!ParseFrameDescription(frame_descr, &vars)) { 391 uptr n_objects = vars.size(); 397 uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0; 398 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL); 399 PrintAccessAndVarIntersection(vars[i], offset, access_size, prev_var_end,
|
| /src/external/bsd/atf/dist/tools/ |
| config.cpp | 43 } vars[] = { variable in typeref:struct:var 74 for (struct var* v = vars; v->name != NULL; v++) {
|
| config_test.cpp | 179 std::map< std::string, std::string > vars = tools::config::get_all(); local 180 ATF_REQUIRE_EQ(vars.size(), all_vars_count()); 182 ATF_REQUIRE(vars.find(v->lc) != vars.end());
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_debugging.cpp | 30 InternalMmapVector<StackVarDescr> vars; local 31 vars.reserve(16); 32 if (!ParseFrameDescription(frame_descr, &vars)) { 36 for (uptr i = 0; i < vars.size(); i++) { 37 if (offset <= vars[i].beg + vars[i].size) { 41 internal_strlcpy(name, vars[i].name_pos, 42 Min(name_size, vars[i].name_len + 1)); 43 *region_address = addr - (offset - vars[i].beg); 44 *region_size = vars[i].size [all...] |
| asan_descriptions.cpp | 380 InternalMmapVector<StackVarDescr> vars; local 381 vars.reserve(16); 382 if (!ParseFrameDescription(frame_descr, &vars)) { 390 uptr n_objects = vars.size(); 396 uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0; 397 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL); 398 PrintAccessAndVarIntersection(vars[i], offset, access_size, prev_var_end,
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_debugging.cpp | 30 InternalMmapVector<StackVarDescr> vars; local 31 vars.reserve(16); 32 if (!ParseFrameDescription(frame_descr, &vars)) { 36 for (uptr i = 0; i < vars.size(); i++) { 37 if (offset <= vars[i].beg + vars[i].size) { 41 internal_strlcpy(name, vars[i].name_pos, 42 Min(name_size, vars[i].name_len + 1)); 43 *region_address = addr - (offset - vars[i].beg); 44 *region_size = vars[i].size [all...] |
| asan_descriptions.cpp | 380 InternalMmapVector<StackVarDescr> vars; local 381 vars.reserve(16); 382 if (!ParseFrameDescription(frame_descr, &vars)) { 390 uptr n_objects = vars.size(); 396 uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0; 397 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL); 398 PrintAccessAndVarIntersection(vars[i], offset, access_size, prev_var_end,
|
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-ssa-alias.h | 50 /* Nonzero if the vars bitmap includes a variable included in 'nonlocal'. */ 52 /* Nonzero if the vars bitmap includes a variable included in 'escaped'. */ 54 /* Nonzero if the vars bitmap includes a anonymous heap variable that 57 /* Nonzero if the vars bitmap includes a anonymous variable used to 60 /* Nonzero if the vars bitmap includes an interposable variable. */ 64 bitmap vars; variable
|
| tree-ssa-ter.cc | 603 bitmap vars = tab->expr_decl_uids[ver]; local 608 if (!bitmap_empty_p (vars)) 612 && bitmap_bit_p (vars, DECL_UID (SSA_NAME_VAR (def))))
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-ssa-alias.h | 50 /* Nonzero if the vars bitmap includes a variable included in 'nonlocal'. */ 52 /* Nonzero if the vars bitmap includes a variable included in 'escaped'. */ 54 /* Nonzero if the vars bitmap includes a anonymous heap variable that 57 /* Nonzero if the vars bitmap includes a anonymous variable used to 60 /* Nonzero if the vars bitmap includes an interposable variable. */ 64 bitmap vars; variable
|
| tree-ssa-ter.cc | 603 bitmap vars = tab->expr_decl_uids[ver]; local 608 if (!bitmap_empty_p (vars)) 612 && bitmap_bit_p (vars, DECL_UID (SSA_NAME_VAR (def))))
|
| /src/tests/lib/libc/stdlib/ |
| t_getenv_thread.c | 79 static char vars[THREADED_NUM_VARS][128]; local 82 (void)snprintf(vars[i], sizeof(vars[i]), 91 (void)strlcpy(name, vars[i], sizeof(name)); 95 ATF_CHECK(putenv(vars[i]) != -1);
|
| /src/external/bsd/atf/dist/atf-c++/ |
| config_test.cpp | 176 std::map< std::string, std::string > vars = atf::config::get_all(); local 177 ATF_REQUIRE_EQ(vars.size(), all_vars_count()); 179 ATF_REQUIRE(vars.find(v->lc) != vars.end());
|
| /src/external/bsd/kyua-cli/dist/engine/ |
| testers_test.cpp | 195 std::map< std::string, std::string > vars; local 200 fs::path("tester.out"), fs::path("tester.err"), vars); 221 std::map< std::string, std::string > vars; local 222 vars["var1"] = "value1"; 223 vars["variable-2"] = "value with spaces"; 229 fs::path("tester.out"), fs::path("tester.err"), vars); 252 const std::map< std::string, std::string > vars; local 258 fs::path("out"), fs::path("err"), vars)); 265 const std::map< std::string, std::string > vars; local 273 fs::path("out"), fs::path("err"), vars)); 280 const std::map< std::string, std::string > vars; local [all...] |
| /src/usr.bin/make/ |
| for.c | 65 Vector /* of 'char *' */ vars; /* Iteration variables */ member in struct:ForLoop 96 Vector_Init(&f->vars, sizeof(char *)); 107 while (f->vars.len > 0) 108 free(*(char **)Vector_Pop(&f->vars)); 109 Vector_Done(&f->vars); 121 const char **vars; local 125 n = f->vars.len; 126 vars = f->vars.items; 134 Buf_AddStr(&buf, vars[i]) 409 const char **vars; local [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| TGParser.h | 82 std::map<std::string, Init *, std::less<>> vars; member in class:llvm::TGLocalVarScope 97 auto It = vars.find(Name); 98 if (It != vars.end()) 110 return vars.find(Name) != vars.end(); 114 bool Ins = vars.insert(std::make_pair(std::string(Name), I)).second;
|
| /src/external/bsd/atf/dist/atf-c/detail/ |
| tp_main.c | 266 char **vars = atf_tc_get_md_vars(tc); local 269 INV(vars != NULL); /* Should be checked. */ 274 for (ptr = vars; *ptr != NULL; ptr += 2) { 281 for (ptr = vars; *ptr != NULL; ptr += 2) { 287 atf_utils_free_charpp(vars);
|
| /src/bin/ksh/ |
| syn.c | 215 XPtrV args, vars; local 221 XPinit(vars, 16); 229 XPfree(vars); 250 /* the iopn == 0 and XPsize(vars) == 0 are 253 if (iopn == 0 && XPsize(vars) == 0 259 XPput(vars, yylval.cp); 269 if (XPsize(args) == 0 && XPsize(vars) == 0) { 275 || XPsize(vars) != 0) 344 t->vars = wordlist(); 415 XPput(vars, NULL) [all...] |
| tree.h | 23 char **vars; /* variable assignments */ member in struct:op 132 * indicating how the arguments have been munged are kept in t->vars[]. 133 * The contents of t->vars[] are stuffed strings (so they can be treated 134 * like all other t->vars[]) in which the second character is the one that
|
| /src/external/bsd/unbound/dist/testcode/ |
| replay.h | 331 rbtree_type* vars; member in struct:replay_runtime
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
| amdgpu_dm_mst_types.c | 546 struct dsc_mst_fairness_vars *vars, 553 if (vars[i].dsc_enabled && dc_dsc_compute_config( 561 params[i].timing->dsc_cfg.bits_per_pixel = vars[i].bpp_x16; 586 struct dsc_mst_fairness_vars *vars, 600 if (vars[i].dsc_enabled) { 601 initial_slack[i] = kbps_to_peak_pbn(params[i].bw_range.max_kbps) - vars[i].pbn; 631 link_timeslots_used += DIV_ROUND_UP(vars[i].pbn, pbn_per_timeslot); 636 vars[next_index].pbn += fair_pbn_alloc; 640 vars[next_index].pbn, 644 vars[next_index].bpp_x16 = bpp_x16_from_pbn(params[next_index], vars[next_index].pbn) 752 struct dsc_mst_fairness_vars vars[MAX_PIPES]; local [all...] |
| /src/external/bsd/am-utils/dist/amd/ |
| opts.c | 117 static char *vars[8]; variable 220 &vars[0], 0, 0, FALSE }, 222 &vars[1], 0, 0, FALSE }, 224 &vars[2], 0, 0, FALSE }, 226 &vars[3], 0, 0, FALSE }, 228 &vars[4], 0, 0, FALSE }, 230 &vars[5], 0, 0, FALSE }, 232 &vars[6], 0, 0, FALSE }, 234 &vars[7], 0, 0, FALSE }, 296 {&vars[0], 0} [all...] |