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

  /src/bin/pax/
getoldopt.c 42 const char *place; local in function:getoldopt
72 place = strchr(optstring, c);
74 if (place == NULL || c == ':') {
79 place++;
80 if (*place == ':') {
  /src/common/lib/libc/stdlib/
getopt.c 79 static const char *place = EMSG; /* option letter processing */ local in function:getopt
85 if (optreset || *place == 0) { /* update scanning pointer */
87 place = nargv[optind];
88 if (optind >= nargc || *place++ != '-') {
90 place = EMSG;
93 optopt = *place++;
94 if (optopt == '-' && *place == 0) {
97 place = EMSG;
103 place = EMSG;
109 optopt = *place++
    [all...]
  /src/games/backgammon/common_source/
odds.c 85 int a, diff, place, addon, menstuck; local in function:canhit
96 place = abs(25 - b - i);
101 addon = place + ((board[j] * a > 2 || j == b) ? 5 : 0);
  /src/games/tetris/
shapes.c 97 place(const struct shape *shape, int pos, int onoff) function in typeref:typename:void
  /src/usr.bin/pr/
egetopt.c 75 static char *place = EMSG; /* option letter processing */ local in function:egetopt
82 *place = savec;
86 if (!*place) {
91 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) {
92 place = EMSG;
96 delim = (int)*place;
97 if (place[1] && *++place == '-' && !place[1])
    [all...]
  /src/lib/libc/stdlib/
getopt_long.c 93 static const char *place = EMSG; /* option letter processing */ variable in typeref:typename:const char *
189 if (optreset || !*place) { /* update scanning pointer */
192 place = EMSG;
209 if ((*(place = nargv[optind]) != '-')
210 || (place[1] == '\0')) { /* found non-option */
211 place = EMSG;
243 if (place[1] && *++place == '-') { /* found "--" */
244 place++;
248 if ((optchar = (int)*place++) == (int)':' |
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_bo.c 226 struct ttm_place place; local in function:vmw_bo_pin_in_start_of_vram
230 place = vmw_vram_placement.placement[0];
231 place.lpfn = bo->num_pages;
233 placement.placement = &place;
235 placement.busy_placement = &place;
1151 * region the move is taking place.
  /src/lib/libcompat/regexp/
regexp.c 198 * place to put the code. So we cheat: we compile it twice, once with code
701 char *place; local in function:reginsert
714 place = opnd; /* Op node, where operand used to be. */
715 *place++ = op;
716 *place++ = '\0';
717 *place++ = '\0';
  /src/games/adventure/
init.c 104 int place[101], prop[101], links[201]; variable in typeref:typename:int[101]
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_bo.c 91 static inline int ttm_mem_type_from_place(const struct ttm_place *place,
96 pos = ffs(place->flags & TTM_PL_MASK_MEM);
432 * This is the place to put in driver specific hooks to release
770 const struct ttm_place *place)
775 if (place->fpfn >= (bo->mem.start + bo->mem.size) ||
776 (place->lpfn && place->lpfn <= bo->mem.start))
853 const struct ttm_place *place,
876 if (place && !bdev->driver->eviction_valuable(bo,
877 place)) {
1112 const struct ttm_place *place = &placement->placement[i]; local in function:ttm_bo_mem_space
1146 const struct ttm_place *place = &placement->busy_placement[i]; local in function:ttm_bo_mem_space
    [all...]

Completed in 19 milliseconds