Home
last modified time | relevance | path

Searched refs:place (Results 1 – 25 of 209) sorted by relevance

123456789

/titanic_41/usr/src/cmd/geniconvtbl/
H A Dassemble.c66 data.size, data.size, data.place.itm_64d, \
67 data.place.itm_ptr,\
70 *((char *)(((char *)itm_header) + data.place.itm_ptr)): \
325 info_header->str_sec.place.itm_ptr = in relocation_I()
328 info_header->direc_tbl_sec.place.itm_ptr = in relocation_I()
329 info_header->str_sec.place.itm_ptr + in relocation_I()
331 info_header->cond_tbl_sec.place.itm_ptr = in relocation_I()
332 info_header->direc_tbl_sec.place.itm_ptr + in relocation_I()
334 info_header->map_tbl_sec.place.itm_ptr = in relocation_I()
335 info_header->cond_tbl_sec.place.itm_ptr + in relocation_I()
[all …]
H A Ddisassemble.c75 #define ADDR(place) ((void *)(((char *)(itm_hdr)) + \ argument
76 ((itm_place2_t)((place).itm_ptr))))
77 #define DADDR(n) (((n)->size <= (sizeof ((n)->place))) ? \
78 ((char *)(&((n)->place))) :\
79 ((char *)(ADDR((n)->place))))
130 type_id.place.itm_ptr += (itm_place2_t)itm_hdr; in disassemble()
151 type_id.place.itm_ptr += (itm_place2_t)itm_header; in dump_itm_header()
159 interpreter.place.itm_ptr += (itm_place2_t)itm_header; in dump_itm_header()
273 info_header->str_sec.place.itm_ptr, in dump_itm_header()
276 info_header->str_plc_tbl.place.itm_ptr, in dump_itm_header()
[all …]
H A Ditm_comp.l349 if (size <= sizeof (data->place)) { in hexadecimal_data()
350 (void) memmove(&(data->place), binary, size); in hexadecimal_data()
353 data->place.itm_ptr = (itm_place2_t)binary; in hexadecimal_data()
373 if (size <= sizeof (data->place)) { in name_data()
374 (void) memmove(&(data->place), seq, size); in name_data()
376 data->place.itm_ptr = (itm_place2_t)malloc_vital(size); in name_data()
377 (void) memmove((char *)(data->place.itm_ptr), seq, size); in name_data()
H A Ditmcomp.h269 #define NSPTR(n) (((n)->size <= (sizeof ((n)->place))) ? \
270 ((void *)(&((n)->place.itm_64d))) : \
271 ((void *)((n)->place.itm_ptr)))
H A Ditmcomp.c802 if (size <= sizeof (data->place)) { in str_to_data()
803 (void) memmove(&(data->place), seq, size); in str_to_data()
805 data->place.itm_ptr = (itm_place2_t)malloc_vital(size); in str_to_data()
806 (void) memmove((char *)(data->place.itm_ptr), seq, size); in str_to_data()
837 } else if (name->size <= (sizeof (name->place))) { in name_to_str()
838 (void) memcpy(ptr, (char *)(&(name->place)), name->size); in name_to_str()
841 (void) memcpy(ptr, (char *)(name->place.itm_ptr), name->size); in name_to_str()
872 p = (char *)&(data->place); in data_to_hexadecimal()
874 p = (char *)(data->place.itm_ptr); in data_to_hexadecimal()
H A Diconv_tm.h133 itm_place_t place; /* place of data */ member
150 itm_place_t place; /* place of place table */ member
175 itm_place_t place; /* place of table section */ member
345 itm_place_t place; member
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dgetopt.c66 static char *place = EMSG; /* option letter processing */ local
69 if (BSDoptreset || !*place) { /* update scanning pointer */
71 if (BSDoptind >= nargc || *(place = nargv[BSDoptind]) != '-') {
72 place = EMSG;
75 if (place[1] && *++place == '-') { /* found "--" */
77 place = EMSG;
81 if ((BSDoptopt = (int)*place++) == (int)':' ||
89 if (!*place)
99 if (!*place)
102 if (*place) /* no white space */
[all …]
H A Dbsd-snprintf.c405 int place = 0; in fmtint() local
429 convert[place++] = in fmtint()
433 } while (uvalue && (place < 20)); in fmtint()
434 if (place == 20) in fmtint()
435 place--; in fmtint()
436 convert[place] = 0; in fmtint()
438 zpadlen = max - place; in fmtint()
439 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0); in fmtint()
471 while (place > 0) in fmtint()
472 dopr_outch(buffer, currlen, maxlen, convert[--place]); in fmtint()
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dgetopt.c47 static char *place = EMSG; /* option letter processing */ in getopt() local
51 if (!*place) { /* update scanning pointer */ in getopt()
52 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
53 place = EMSG; in getopt()
56 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
58 place = EMSG; in getopt()
62 if ((optopt = (int)*place++) == (int)':' || in getopt()
71 if (!*place) in getopt()
85 if (!*place) in getopt()
88 if (*place) /* no white space */ in getopt()
[all …]
/titanic_41/usr/src/lib/libsmbfs/smb/
H A Dcfopt.c77 static const char *place = EMSG; /* option letter processing */ local
83 if (cf_optreset || !*place) { /* update scanning pointer */
88 place = EMSG;
91 if (*(place = nargv[tmpind]) != '-') {
95 if (place[1] && *++place == '-') { /* found "--" */
97 place = EMSG;
104 if ((cf_optopt = (int)*place++) == (int)':' ||
112 if (!*place)
122 if (!*place)
125 if (*place) /* no white space */
[all …]
/titanic_41/usr/src/lib/libc/port/gen/
H A Dgetopt_long.c115 static char *place = EMSG; /* option letter processing */ variable
318 current_argv = place; in parse_long_options()
531 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal()
534 place = EMSG; in getopt_internal()
551 if ((*(place = nargv[optind]) != '-') || (place[1] == '\0')) { in getopt_internal()
552 place = EMSG; /* found non-option */ in getopt_internal()
589 if (place[1] != '\0' && *++place == '-' && in getopt_internal()
590 (place[1] == '\0' || long_options == NULL)) { in getopt_internal()
592 place = EMSG; in getopt_internal()
613 if (long_options != NULL && place != nargv[optind] && in getopt_internal()
[all …]
/titanic_41/usr/src/cmd/svr4pkg/libinst/
H A Dlockinst.c174 lockinst(char *util_name, char *pkg_name, char *place) in lockinst() argument
180 if ((place == (char *)NULL) || (*place == '\0')) { in lockinst()
181 place = "initial"; in lockinst()
233 lock_pkg, place, ST_QUIT); in lockinst()
254 lockupd(char *place) in lockupd() argument
256 (void) wrlockdata(lock_fd, lock_pid, lock_name, lock_pkg, place, in lockupd()
/titanic_41/usr/src/head/
H A Dmacros.h69 #define SAVE(name, place) { int place = name; argument
70 #define RSTR(name, place) name = place; } argument
/titanic_41/usr/src/cmd/dtrace/test/tst/common/usdt/
H A Dtst.argmap.d39 test_prov$1:::place
47 test_prov$1:::place
55 test_prov$1:::place
H A Dtst.args.d43 test_prov$1:::place
49 test_prov$1:::place
H A Dtst.args.c35 DTRACE_PROBE2(test_prov, place, 10, 4); in main()
H A Dargs.d30 probe place(int i, int j);
H A Dtst.argmap.c35 DTRACE_PROBE2(test_prov, place, 10, 4); in main()
H A Dargmap.d30 probe place(int i, int j) : (int j, int i, int i, int j);
/titanic_41/usr/src/cmd/abi/spectrans/spec2trace/
H A Dprintfuncs.c108 prepare_printf_part(ENTRY *e, char *name, char *place, int size) in prepare_printf_part() argument
122 size = snprintf(place, size, in prepare_printf_part()
129 size = snprintf(place, size, ", \n\t%s", name); in prepare_printf_part()
132 errlog(TRACING, "place='%s'\n", place); in prepare_printf_part()
/titanic_41/usr/src/cmd/sgs/error/common/
H A Derrortouch.c40 static void errorprint(FILE *place, Eptr errorp, boolean print_all);
42 static void insert(int place);
544 insert(int place) in insert() argument
546 --place; /* always insert messages before the offending line */ in insert()
547 for (; o_lineno < place; o_lineno++, n_lineno++) { in insert()
714 errorprint(FILE *place, Eptr errorp, boolean print_all) in errorprint() argument
720 (void) fprintf(place, "[%s] ", in errorprint()
722 wordvprint(place, errorp->error_lgtext-offset, in errorprint()
724 (void) putc('\n', place); in errorprint()
/titanic_41/usr/src/lib/libbsm/
H A Daudit_event.txt69 3:AUE_OPEN:open(2) - place holder:no
130 63:AUE_SEMSYS:semsys(2) - place holder:no
132 64:AUE_MSGSYS:msgsys(2) - place holder:no
134 65:AUE_SHMSYS:shmsys(2) - place holder:no
135 66:AUE_BSMSYS:bsmsys(2) - place holder:no
136 67:AUE_RFSSYS:rfssys(2) - place holder:no
139 70:AUE_VPIXSYS:vpixsys(2) - place holder:no
196 136:AUE_AUDITSVC:auditsvc(2) - place holder:no
198 138:AUE_AUDITON:auditon(2) - place holder:no
263 220:AUE_AUDITSYS:audit system calls place holder:no
[all …]
/titanic_41/usr/src/lib/libsasl/lib/
H A Dclient.c743 size_t pos=0,place; local
797 place=0;
801 name[place]=mechlist[pos];
803 place++;
804 if (SASL_MECHNAMEMAX < place) {
805 place--;
813 name[place]=0;
815 if (! place) continue;
/titanic_41/usr/src/grub/grub-0.97/netboot/
H A Dtlan.c1003 u8 place; local
1010 for (place = 0x80; place != 0; place >>= 1) {
1011 if (place & data)
1063 u8 place; local
1072 for (place = 0x80; place; place >>= 1) {
1075 *data |= place;
/titanic_41/usr/src/common/crypto/md5/amd64/
H A DTHIRDPARTYLICENSE2 Licence: I hereby disclaim the copyright on this code and place it

123456789