/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_debugging.cc | 30 InternalMmapVector<StackVarDescr> vars; local in function:__anon4e3fe3010110::FindInfoForStackVar 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 in function:__asan::StackAddressDescription::Print 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/tests/lib/libc/stdlib/ |
t_getenv_thread.c | 79 static char vars[THREADED_NUM_VARS][128]; local in function:thread_putenv 82 (void)snprintf(vars[i], sizeof(vars[i]), 91 (void)strlcpy(name, vars[i], sizeof(name)); 95 ATF_CHECK(putenv(vars[i]) != -1);
|
/src/usr.bin/make/unit-tests/ |
opt-debug-errors-jobs.mk | 13 all: fail-vars 47 fail-vars:
|
/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 in function:ForLoop_Details 125 n = f->vars.len; 126 vars = f->vars.items; 134 Buf_AddStr(&buf, vars[i]) 409 const char **vars; local in function:ForLoop_SubstVarShort [all...] |
make.h | 507 HashTable /* of Var pointer */ vars; member in struct:GNode
|
/src/bin/ksh/ |
syn.c | 215 XPtrV args, vars; local in function:get_command 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
|
table.h | 114 struct table vars; /* local variables */ member in struct:block
|
/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 in function:compute_mst_dsc_configs_for_link [all...] |
/src/usr.bin/crunch/crunchgen/ |
crunchgen.c | 94 static strlst_t *vars = NULL; variable in typeref:typename:strlst_t * 181 case 'v': add_string(&vars, optarg); break; 1052 for (lst = vars; lst != NULL; lst = lst->next) 1063 for (lst = vars; lst != NULL; lst = lst->next)
|