Home
last modified time | relevance | path

Searched refs:temp (Results 101 – 125 of 454) sorted by relevance

12345678910>>...19

/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dprom.c63 char *temp; in disp_prom_version() local
80 temp = vers + strlen(vers) + 1; in disp_prom_version()
81 log_printf("%s", temp, 0); in disp_prom_version()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dptrmove.c88 register void *temp; local
93 temp = *a_ptr;
95 *b_ptr-- = temp;
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A DT.latin18 TEMP0=$WORKDIR/test.temp.0
9 TEMP1=$WORKDIR/test.temp.1
10 TEMP2=$WORKDIR/test.temp.2
H A DT.overflow8 TEMP0=$WORKDIR/test.temp.0
9 TEMP1=$WORKDIR/test.temp.1
10 TEMP2=$WORKDIR/test.temp.2
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dopen_memstream.c141 void *temp; in open_memstream_write() local
142 temp = recallocarray(memp->mstr_buf, memp->mstr_alloc, in open_memstream_write()
144 if (temp == NULL) { in open_memstream_write()
147 memp->mstr_buf = temp; in open_memstream_write()
149 *memp->mstr_ubufp = temp; in open_memstream_write()
/illumos-gate/usr/src/lib/libadm/common/
H A Dputtext.c50 wchar_t *copy, *lastword, *lastend, temp[MWIDTH+1]; in puttext() local
90 copy = temp; in puttext()
278 mlen = wcstombs(mbtemp, temp, MWIDTH+1); in puttext()
284 copy = temp; in puttext()
300 mlen = wcstombs(mbtemp, temp, MWIDTH+1); in puttext()
H A Dckyorn.c55 temp[TMPSIZ+1]; in ckyorn_val() local
57 for (pt = temp, i = 0; *str && i < TMPSIZ; i++) { in ckyorn_val()
62 if (strcmp(temp, vchoices[i++]) == 0) in ckyorn_val()
H A Dckint.c95 temp[64]; in ckint() local
98 setprmpt(temp, base); in ckint()
99 prompt = temp; in ckint()
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk3.c1002 register int temp; in exprreduce() local
1038 temp = np->n_type; in exprreduce()
1077 if (temp == INDEX) { in exprreduce()
1673 register NODE *temp; in userfunc() local
1743 temp->n_strlen = 0; in userfunc()
1760 temptail = temp; in userfunc()
1765 temp->n_alink = temp; in userfunc()
1774 temp = templist; in userfunc()
1807 if (temp->n_type == ARRAY && (temp->n_scope == slevel)) in userfunc()
1808 delarray(temp); in userfunc()
[all …]
/illumos-gate/usr/src/cmd/eqn/
H A Dfont.c65 char temp[20]; in globfont() local
67 (void) getstr(temp, 20); in globfont()
69 gfont = temp[0]; in globfont()
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dlaststmtchanges.test179 create temp table t0(x);
180 create temp table t1 (k integer primary key);
181 create temp table t2 (k integer primary key);
182 create temp view v1 as select * from t1;
183 create temp view v2 as select * from t2;
184 create temp table n1 (k integer primary key, n);
185 create temp table n2 (k integer primary key, n);
194 create temp trigger r1 instead of insert on v1 for each row begin
204 create temp trigger r2 instead of insert on v2 for each row begin
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Ddraw.c154 char temp[50], *p, *getstr(); in drawwig() local
159 for (N = 2; (p=getstr(p,temp)) != NULL && N < sizeof(x)/sizeof(x[0]); N++) { in drawwig()
160 x[N] = atoi(temp); in drawwig()
161 p = getstr(p, temp); in drawwig()
162 y[N] = atoi(temp); in drawwig()
201 char *getstr(char *p, char *temp) in getstr() argument
206 temp[0] = 0; in getstr()
210 *temp++ = *p++; in getstr()
211 *temp = '\0'; in getstr()
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dlshiftl.S70 srl %o3,%o4,%o5 ! temp = R.l >> (31 - cnt)
74 or %o2,%o5,%o2 ! R.h = R.h | temp
86 sll %o2,%o1,%o5 ! temp = R.h << (31 - cnt)
90 or %o3,%o5,%o3 ! R.l = R.l | temp
H A Dalloca.S49 ld [%o3 + %o1], %o4 ! load from old temp area
50 st %o4, [%sp + %o1] ! store to new temp area
54 ! now return new %sp + end-of-temp
/illumos-gate/usr/src/cmd/fm/modules/common/fabric-xlate/
H A Dfx_subr.c238 char *temp, *res; in fab_xpath_query() local
254 fmd_hdl_debug(hdl, "query result: %s\n", temp); in fab_xpath_query()
255 res = fmd_hdl_strdup(hdl, temp, FMD_SLEEP); in fab_xpath_query()
256 xmlFree(temp); in fab_xpath_query()
401 char *retval, *temp; in fab_find_rppath_by_devbdf() local
494 temp = GET_PROP(devNode, "value"); in fab_find_rppath_by_devbdf()
497 xmlFree(temp); in fab_find_rppath_by_devbdf()
633 char *retval, *temp; in fab_find_addr() local
718 temp = GET_PROP(devNode, "value"); in fab_find_addr()
719 retval = fmd_hdl_strdup(hdl, temp, FMD_SLEEP); in fab_find_addr()
[all …]
/illumos-gate/usr/src/cmd/fdisk/
H A Dfdisk.c1770 logical_drive_t *temp; in load() local
2053 for (temp = fdisk_get_ld_head(epp); temp != NULL; in load()
2054 temp = temp->next) { in load()
2055 relsect = temp->abs_secnum + temp->logdrive_offset; in load()
4184 for (temp = fdisk_get_ld_head(epp); temp != NULL;
4185 temp = temp->next) {
5430 logical_drive_t *temp; local
5439 for (temp = head, pno = 5; temp != NULL; temp = temp->next, pno++) {
5447 temp->abs_secnum + temp->numsect - 1 +
5500 for (temp = fdisk_get_ld_head(epp), pno = 5; temp != NULL;
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/psvc/psvcpolicy/
H A Dpsvcpolicy.c218 int32_t seg_found, temp; in psvc_update_thresholds_0() local
286 temp = temp_array[j]; in psvc_update_thresholds_0()
309 int32_t temp; in check_temp() local
413 temp, label); in check_temp()
430 temp, label); in check_temp()
447 temp, label); in check_temp()
464 temp, label); in check_temp()
1248 int32_t temp; in device_temp_check() local
1260 &temp); in device_temp_check()
1263 temp = 0; in device_temp_check()
[all …]
/illumos-gate/usr/src/cmd/troff/
H A Dn9.c88 int w, cnt, delim, rem, temp; in setline() local
115 *i++ = makem(-(temp = ((w - length) / 2))); in setline()
117 *i++ = makem(-(w - length - temp)); in setline()
415 int length, ws, npad, temp, type; in setfield() local
426 temp = npad = ws = 0; in setfield()
464 temp = j; in setfield()
479 *fp++ = temp; in setfield()
481 temp = i = (j = length - ws) / npad; in setfield()
486 if (temp < 0) in setfield()
/illumos-gate/usr/src/lib/libdemangle/common/
H A Dcxx_util.c102 void *temp = xrealloc(n->nm_ops, n->nm_items, in name_reserve() local
105 if (temp == NULL) in name_reserve()
108 n->nm_items = temp; in name_reserve()
396 void *temp = xrealloc(sub->sub_ops, sub->sub_items, in sub_reserve() local
399 if (temp == NULL) in sub_reserve()
402 sub->sub_items = temp; in sub_reserve()
493 void *temp = xrealloc(tpl->tpl_ops, tpl->tpl_items, in templ_reserve() local
496 if (temp == NULL) in templ_reserve()
499 tpl->tpl_items = temp; in templ_reserve()
/illumos-gate/usr/src/cmd/valtools/
H A Dckitem.c132 char temp[LSIZE * MB_LEN_MAX]; in main() local
285 r = wcstombs(temp, wtemp, in main()
292 if (setitem(mp, temp)) { in main()
303 r = wcstombs(temp, wtemp, n * MB_LEN_MAX); in main()
309 if (setitem(mp, temp)) { in main()
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dgetlnbuf.awk11 getline temp
13 printf ("%s\n",temp)
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dalloca.S49 ldx [%g1 + %o1], %o4 ! load from old temp area
50 stx %o4, [%g5 + %o1] ! store to new temp area
54 ! now return new %sp + end-of-temp
/illumos-gate/usr/src/cmd/svr4pkg/pkginstall/
H A Dgetinst.c236 char temp[256]; in prompt() local
259 (void) snprintf(temp, sizeof (temp), in prompt()
262 if (setitem(menup, temp)) { in prompt()
/illumos-gate/usr/src/uts/i86pc/io/acpi/acpidev/
H A Dacpidev_drv.c1127 acpidev_class_list_t *temp; in acpidev_register_class() local
1147 for (temp = *listpp; temp != NULL; temp = temp->acl_next) { in acpidev_register_class()
1148 if (temp->acl_class == clsp) { in acpidev_register_class()
1178 acpidev_class_list_t *temp; in acpidev_unregister_class() local
1189 for (temp = NULL; *listpp; listpp = &(*listpp)->acl_next) { in acpidev_unregister_class()
1191 temp = *listpp; in acpidev_unregister_class()
1196 if (temp == NULL) { in acpidev_unregister_class()
1201 } else if (temp->acl_class->adc_refcnt != 0) { in acpidev_unregister_class()
1207 kmem_free(temp, sizeof (*temp)); in acpidev_unregister_class()
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/daktari/common/
H A Dworkfile.c346 Board_node *temp = root->bd_list; in daktari_insert_board() local
358 if (temp == NULL) in daktari_insert_board()
361 else if (temp->board_num > board) { in daktari_insert_board()
362 bnode->next = temp; in daktari_insert_board()
366 while ((temp->next != NULL) && (board > temp->next->board_num)) in daktari_insert_board()
367 temp = temp->next; in daktari_insert_board()
369 bnode->next = temp->next; in daktari_insert_board()
370 temp->next = bnode; in daktari_insert_board()

12345678910>>...19