/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...] |
targ.c | 205 HashTable_Init(&gn->vars); 242 HashTable_Done(&gn->vars);
|
/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,
|
asan_report.h | 47 InternalMmapVector<StackVarDescr> *vars);
|
/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/make/unit-tests/ |
unexport-env.mk | 3 # pick up a bunch of exported vars
|
unexport.mk | 3 # pick up a bunch of exported vars
|
opt-debug-errors-jobs.mk | 13 all: fail-vars 47 fail-vars:
|
opt-debug-errors-jobs.exp | 56 *** Failed target: fail-vars 61 *** [fail-vars] Error code 1
|
varcmd.mk | 3 # Test behaviour of recursive make and vars set on command line.
|
varmisc.exp | 22 We have target specific vars
|
/src/tests/lib/libcurses/director/ |
testlang_parse.y | 118 static var_t *vars; /* Variables defined during the test. */ 511 if (vars[i].type != data_number) 514 return vars[i].value; 602 switch (vars[i].type) { 607 retval = add_to_vals(vars[i].type, vars[i].value); 649 vars[i].type = type; 652 vars[i].len = strlen(number) + 1; 653 vars[i].value = malloc(vars[i].len + 1) [all...] |
/src/bin/ksh/ |
tree.c | 45 if (t->vars) 46 for (w = t->vars; *w != NULL; ) 49 fptreef(shf, indent, "#no-vars# "); 58 /* Print original vars */ 59 if (t->left->vars) 60 for (w = t->left->vars; *w != NULL; ) 63 fptreef(shf, indent, "#no-vars# "); 64 /* Print expanded vars */ 114 if (t->vars != NULL) { 116 for (w = t->vars; *w; [all...] |
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
|
var.c | 59 tinit(&l->vars, &l->area, 0); 72 struct tbl *vp, **vpp = l->vars.tbls, *vq; 76 for (i = l->vars.size; --i >= 0; ) { 234 vp = mytsearch(&l->vars, n, h); 244 vp = tenter(&l->vars, n, h); 275 vp = tenter(&l->vars, n, h); 280 while ((ll = ll->next) && !(vq = mytsearch(&ll->vars, n, h))) 880 for (vpp = l->vars.tbls, i = l->vars.size; --i >= 0; ) 889 vp2 = mytsearch(&l2->vars, vp->name, h) [all...] |
exec.c | 309 ap = (t->vars != NULL) ? 310 eval(t->vars, DOBLANK|DOGLOB|DOTILDE) 384 for (ap = t->vars; *ap; ap++) 558 for (i = 0; t->vars[i]; i++) { 559 cp = evalstr(t->vars[i], DOASNTILDE); 565 t->vars[i + 1] ? space : newline); 566 if (!t->vars[i + 1])
|
/src/usr.bin/tip/ |
Makefile | 43 remote.c tip.c tipout.c value.c vars.c ${DIALSRCS}
|
/src/sbin/fsck_lfs/ |
Makefile | 12 SRCS+= segwrite.c setup.c utilities.c vars.c vnode.c
|
/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.sbin/npf/npfctl/ |
npf_build.c | 313 build_vars(npf_bpf_t *ctx, sa_family_t family, npfvar_t *vars, int opts) 315 size_t var_cnt = npfvar_get_count(vars); 317 const unsigned type = npfvar_getfilt_type(vars, i); 318 void *data = npfvar_getfilt_data(vars, type, i); 360 npfctl_build_vars(npf_bpf_t *ctx, sa_family_t family, npfvar_t *vars, int opts) 363 build_vars(ctx, family, vars, opts); 412 npfctl_build_proto(npf_bpf_t *ctx, const npfvar_t *vars) 414 const unsigned count = npfvar_get_count(vars); 422 const opt_proto_t *op = npfvar_get_data(vars, NPFVAR_PROTO, 0); 429 const opt_proto_t *op = npfvar_get_data(vars, NPFVAR_PROTO, i) [all...] |
/src/usr.bin/mail/ |
Makefile | 30 tty.c vars.c
|
/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)
|