Searched refs:place (Results 26 - 50 of 84) sorted by relevance

1234

/freebsd-current/contrib/file/src/
H A Dgetopt_long.c96 static const char *place = EMSG; /* option letter processing */ variable
201 if (optreset || !*place) { /* update scanning pointer */
204 place = EMSG;
221 if ((*(place = nargv[optind]) != '-')
222 || (place[1] == '\0')) { /* found non-option */
223 place = EMSG;
255 if (place[1] && *++place == '-') { /* found "--" */
256 place++;
260 if ((optchar = (int)*place
[all...]
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dexpected.inc18 // in-place construction of unexpected values
H A Dutility.inc82 // in-place construction
/freebsd-current/sys/sys/
H A Drangeset.h75 void *rangeset_lookup(struct rangeset *rs, uint64_t place);
78 * Finds the first range that begins at or after place.
80 void *rangeset_next(struct rangeset *rs, uint64_t place);
/freebsd-current/contrib/ee/
H A Dnew_curse.c99 #define String_Out(table, stack, place) Info_Out(table, stack, place)
101 #define String_Out(table, stack, place) Cap_Out(table, stack, place)
1527 Cap_Out(string, p_list, place) /* interpret the output string if necessary */
1530 int place; /* place keeper of top of stack */
1542 p1 = p_list[--place];
1543 p2 = p_list[--place];
1643 Operation(Temp_Stack, place) /* handl
3673 int place; local
[all...]
H A Dnew_curse.h203 extern int Operation P_((int Temp_Stack[], int place));
204 extern void Info_Out P_((char *string, int p_list[], int place));
/freebsd-current/sys/kern/
H A Dsubr_rangeset.c251 rangeset_lookup(struct rangeset *rs, uint64_t place) argument
256 r = RANGESET_PCTRIE_LOOKUP_LE(&rs->rs_trie, place);
259 if (r->re_end <= place)
265 rangeset_next(struct rangeset *rs, uint64_t place) argument
269 return (RANGESET_PCTRIE_LOOKUP_GE(&rs->rs_trie, place));
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c65 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
552 int place = 0; local
577 convert[place++] =
581 } while(uvalue && (place < 20));
582 if (place == 20) place--;
583 convert[place] = 0;
585 zpadlen = max - place;
586 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
597 printf("zpad: %d, spad: %d, min: %d, max: %d, place
[all...]
/freebsd-current/share/mk/
H A Dbsd.endian.mk24 # during the bootstrap phases (apart from one place that's adequately protected
H A Dbsd.confs.mk92 # Append DIR to DIRS if not already in place -- DIRS is already filtered, so
H A Dsuite.test.mk89 # report bogus results unless the new binaries are put in place.
H A Dbsd.files.mk87 # Append DIR to DIRS if not already in place -- DIRS is already filtered, so
/freebsd-current/crypto/openssl/crypto/bio/
H A Dbio_print.c441 int place = 0; local
467 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef")
470 } while (uvalue && (place < (int)sizeof(convert)));
471 if (place == sizeof(convert))
472 place--;
473 convert[place] = 0;
475 zpadlen = max - place;
477 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
517 while (place > 0) {
518 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]))
[all...]
/freebsd-current/usr.sbin/apm/
H A Dapm.c100 int place = 1; local
106 retval += (bcd & 0xf) * place;
108 place *= 10;
/freebsd-current/libexec/rtld-elf/i386/
H A Drtld_start.S41 subl $16,%esp # A place to store exit procedure addr
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp1032 // will take place in the parallel region nested within the teams construct.
3961 /* drop root_thread into place */
4803 // Copy topology information associated with the new place
4817 // Copy the primary thread's place partition to the team struct
4829 "bound to place %d partition = [%d,%d]\n",
4849 KA_TRACE(100, ("__kmp_partition_places: primary: T#%d(%d:%d) place %d "
4866 int place = masters_place;
4871 if (place == last_place) {
4872 place = first_place;
4873 } else if (place
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dldt2.sh70 and place these in for examle $jail/root
/freebsd-current/contrib/less/
H A Dregexp.c199 * place to put the code. So we cheat: we compile it twice, once with code
632 register char *place; local
645 place = opnd; /* Op node, where operand used to be. */
646 *place++ = op;
647 *place++ = '\0';
648 *place++ = '\0';
/freebsd-current/libexec/rtld-elf/amd64/
H A Drtld_start.S34 subq $24,%rsp # A place to store exit procedure addr
/freebsd-current/contrib/bmake/unit-tests/
H A Dcmdline.mk43 # low-level parsing from ParseRawLine does not take place.
H A Dvarmod-defined.mk23 # be used in .if conditions. In this place, other undefined expressions
/freebsd-current/stand/lua/
H A Dhook.lua41 -- e.g. config.reloaded which takes place after config has been reloaded,
/freebsd-current/contrib/byacc/
H A Doutput.c919 Value_t place; local
939 place = (Value_t)pack_vector(i);
941 place = base[state];
943 pos[i] = place;
944 base[order[i]] = place;
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp912 auto reportFatal = [&](const uint8_t *place, const char *msg) {
914 Twine::utohexstr(place - sec.content().data()) + "): " + msg);
936 const uint8_t *place = desc.data(); local
938 reportFatal(place, "program property is too short");
943 reportFatal(place, "program property is too short");
950 reportFatal(place, "FEATURE_1_AND entry is too short");
/freebsd-current/contrib/sendmail/src/
H A Dconf.c3094 static char *place = EMSG; /* option letter processing */ local
3100 place = EMSG;
3102 if(!*place) { /* update scanning pointer */
3103 if (optind >= nargc || *(place = nargv[optind]) != '-' || !*++place) {
3107 if (*place == '-') { /* found "--" */
3113 if ((optopt = (int)*place++) == (int)':' || !(oli = strchr(ostr,optopt))) {
3114 if (!*place) ++optind;
3119 if (!*place) ++optind;
3122 if (*place) optar
[all...]

Completed in 334 milliseconds

1234