HomeSort by: relevance | last modified time | path
    Searched defs:expanded (Results 1 - 9 of 9) sorted by relevancy

  /src/usr.sbin/autofs/
defined.c 75 char c, *expanded, *name; local in function:defined_expand
80 expanded = checked_strdup(string);
181 ret = asprintf(&expanded, "%.*s%s%s",
186 //log_debugx("\"%s\" expanded to \"%s\"", string, expanded);
192 string = expanded;
205 return expanded;
common.c 332 char c, *expanded; local in function:expand_ampersand
339 expanded = checked_strdup(string);
362 ret = asprintf(&expanded, "%.*s%s%s",
367 //log_debugx("\"%s\" expanded with key \"%s\" to \"%s\"",
368 // string, key, expanded);
373 string = expanded;
381 return expanded;
419 struct node *child, *expanded; local in function:node_expand_wildcard
424 expanded = node_duplicate(n, NULL);
425 expanded->n_key = checked_strdup(key)
    [all...]
  /src/lib/libform/
internals.h 92 unsigned expanded; member in struct:_formi_field_lines
internals.c 582 if (row->expanded < width) {
607 } else if (row->expanded > width) {
613 * the field border lies when the tabs are expanded.
617 if (pos >= row->expanded)
618 pos = row->expanded - 1;
645 row->expanded <= field->cols)
727 "%s: join_next before length = %d, expanded = %d",
728 __func__, row->length, row->expanded);
730 " :: next row length = %d, expanded = %d\n",
731 row->length, row->expanded);
1370 unsigned int end, scroll_amt, expanded; local in function:_formi_hscroll_fwd
    [all...]
  /src/lib/libintl/
libintl_local.h 95 char *expanded; /* expanded string */ member in struct:mosysdepstr_h
96 size_t expanded_len; /* length of expanded string */
  /src/usr.bin/make/
suff.c 1238 * Now that the source is expanded, remove it from the list of
1313 * The expanded node is removed from the parent's list of children, and the
1324 char *expanded; local in function:ExpandChildren
1346 expanded = Var_Subst(cgn->name, pgn, VARE_EVAL);
1358 char *ap = expanded;
1361 ExpandChildrenRegular(expanded, pgn, &members);
1376 free(expanded);
1382 * The source is expanded now, so remove it from the list of children,
1785 * examine the sources until we've expanded any variables/wildcards
var.c 477 * name name to find, is not expanded any further
575 * The variable name is kept as-is, it is not expanded.
636 * The argument is expanded exactly once and then split into words.
641 char *expanded; local in function:Var_Undef
651 expanded = Var_Subst(arg, SCOPE_GLOBAL, VARE_EVAL);
652 if (expanded == var_Error) {
659 varnames = Str_Words(expanded, false);
669 free(expanded);
944 char *expanded = Var_Subst("${.MAKE.EXPORTED:O:u}", local in function:GetVarnamesToUnexport
947 varnames = FStr_InitOwn(expanded);
4651 char *expanded; local in function:Var_Parse
4821 char *expanded; local in function:Var_Expand
    [all...]
  /src/bin/ksh/
vi.c 180 /* Information for keeping track of macros that are being expanded.
188 unsigned char *buf; /* pointer to macro(s) being expanded */
194 static enum expand_mode expanded = NONE;/* last input was expanded */ variable in typeref:enum:expand_mode
599 expanded = NONE;
610 expanded = NONE;
625 expanded = NONE;
644 expanded = NONE;
693 expanded = NONE;
1950 if (commandx == 0 && expanded == EXPAND && buf)
    [all...]
  /src/sys/dev/stbi/
stb_image.c 2682 uint8 *idata, *expanded, *out; member in struct:__anon26c9e3660c08
3059 z->expanded = (uint8 *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, 16384, (int *) &raw_len, !iphone);
3060 if (z->expanded == NULL) return 0; // zlib should set error
3066 if (!create_png_image(z, z->expanded, raw_len, s->img_out_n, interlace)) return 0;
3079 FREE(z->expanded); z->expanded = NULL;
3108 p->expanded = NULL;
3124 FREE(p->expanded); p->expanded = NULL;

Completed in 27 milliseconds