Searched refs:temp (Results 51 - 75 of 744) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libreadline/examples/
H A Drl.c85 char *temp, *prompt; local
150 temp = readline (prompt);
153 if (temp == 0)
156 printf ("%s\n", temp);
H A Drlcat.c80 char *temp; local
119 while (temp = readline (""))
121 if (*temp)
122 add_history (temp);
123 printf ("%s\n", temp);
H A Dmanexamp.c90 int temp = start; local
92 end = temp;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dencode.c69 apr_uint64_t temp = 0; local
81 *val = (temp << 7) | c;
86 temp = (temp << 7) | (c & 0x7f);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dicom.c80 int temp; local
85 temp = 4;
87 temp = 5;
88 doublefreq(freq * 1e6, &cmd[6], temp);
89 rc = write(fd, cmd, temp + 7);
93 } else if (rc != temp + 7) {
95 rc, temp+7);
/freebsd-11-stable/contrib/gperf/src/
H A Dkeyword-list.cc134 for (Keyword_List *temp = list->rest();;)
136 temp = temp->rest();
137 if (temp == NULL)
139 temp = temp->rest();
141 if (temp == NULL)
/freebsd-11-stable/contrib/dma/
H A Dcrypto.c261 char *temp; local
265 temp = calloc(BUF_SIZE, 1);
276 free(temp);
281 base64_decode(buffer + 4, temp);
282 hmac_md5((unsigned char *)temp, strlen(temp),
284 free(temp);
296 len = base64_encode(buffer, strlen(buffer), &temp);
303 send_remote_command(fd, "%s", temp);
304 free(temp);
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dkeymaps.c84 Keymap temp; local
86 temp = rl_make_bare_keymap ();
89 temp[i].type = map[i].type;
90 temp[i].function = map[i].function;
92 return (temp);
H A Dhistexpand.c139 char *temp; local
235 temp = (char *)xmalloc (1 + which);
237 strncpy (temp, string + local_index, which);
238 temp[which] = '\0';
247 history_offset = history_length; free (temp) ; return (char *)NULL; \
252 if (*temp == '\0' && substring_okay)
256 free (temp);
257 temp = savestring (search_string);
266 local_index = (*search_func) (temp, -1);
281 search_string = temp;
368 char *temp; local
525 char *event, *temp, *result, *tstr, *t, c, *word_spec; local
939 char *temp; local
[all...]
/freebsd-11-stable/contrib/apr/atomic/unix/
H A Ds390.c42 apr_uint32_t prev = *mem, temp; local
49 : "+d" (prev), "+d" (temp), "=Q" (*mem)
68 apr_uint32_t prev = *mem, temp; local
75 : "+d" (prev), "+d" (temp), "=Q" (*mem)
79 return temp;
/freebsd-11-stable/contrib/byacc/
H A Dmkpar.c76 action *actions, *temp; local
93 temp = NEW(action);
94 temp->next = actions;
95 temp->symbol = symbol;
96 temp->number = k;
97 temp->prec = symbol_prec[symbol];
98 temp->action_code = SHIFT;
99 temp->assoc = symbol_assoc[symbol];
100 actions = temp;
135 action *temp, *pre local
[all...]
/freebsd-11-stable/contrib/gcclibs/include/
H A Dobstack.h172 PTR_INT_TYPE temp; /* Temporary for some macros. */
310 Also, we can avoid using the `temp' slot, to make faster code. */
468 ( (h)->temp = (length), \
469 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
470 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0))
473 ( (h)->temp = (length), \
474 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
475 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0), \
476 _obstack_memcpy ((h)->next_free, (where), (h)->temp), \
477 (h)->next_free += (h)->temp)
171 PTR_INT_TYPE temp; /* Temporary for some macros. */ member in struct:obstack
[all...]
/freebsd-11-stable/sys/dev/usb/controller/
H A Dat91dci.c306 uint32_t temp; local
314 temp = csr;
315 temp &= (AT91_UDP_CSR_RX_DATA_BK0 |
367 AT91_CSR_ACK(csr, temp);
375 temp |= AT91_UDP_CSR_FORCESTALL;
380 if (temp) {
381 DPRINTFN(5, "clearing 0x%08x\n", temp);
382 AT91_CSR_ACK(csr, temp);
393 uint32_t temp; local
424 temp
517 uint32_t temp; local
599 uint32_t temp; local
650 uint8_t temp; local
877 at91dci_setup_standard_chain_sub(struct at91dci_std_temp *temp) argument
903 struct at91dci_std_temp temp; local
1303 uint32_t temp; local
1668 uint32_t temp; local
[all...]
/freebsd-11-stable/contrib/binutils/include/
H A Dobstack.h172 PTR_INT_TYPE temp; /* Temporary for some macros. */
310 Also, we can avoid using the `temp' slot, to make faster code. */
468 ( (h)->temp = (length), \
469 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
470 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0))
473 ( (h)->temp = (length), \
474 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
475 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0), \
476 _obstack_memcpy ((h)->next_free, (where), (h)->temp), \
477 (h)->next_free += (h)->temp)
171 PTR_INT_TYPE temp; /* Temporary for some macros. */ member in struct:obstack
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dpw_scan.c92 unsigned long temp; local
121 temp = strtoul(p, &ep, 10);
122 if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) {
127 id = temp;
156 temp = strtoul(p, &ep, 10);
157 if ((temp == ULONG_MAX && errno == ERANGE) || temp > GID_MAX) {
162 id = temp;
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dvisbuf.c210 char temp[CCHARW_MAX + 80]; local
211 int j = wctomb(temp, c), k;
213 _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
215 j = (int) strlen(temp);
218 tp = VisChar(tp, UChar(temp[k]), WideLen(len));
333 char temp[80]; local
334 VisChar(temp, UChar(PUTC_buf[k]), sizeof(temp));
335 (void) _nc_trace_bufcat(bufnum, temp);
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.c50 } temp; member in struct:__anon36
151 && coder->temp.pos == coder->temp.size) {
152 coder->temp.pos = 0;
153 coder->temp.size = 0;
158 coder->temp.buffer, &coder->temp.size,
163 else if (ret != LZMA_OK || coder->temp.size == 0)
168 if (coder->temp.size != 0)
177 const lzma_ret ret = decode_buffer(coder, coder->temp
[all...]
/freebsd-11-stable/sys/dev/random/
H A Dyarrow.c262 static uint128_t temp; local
275 randomdev_hash_finish(&yarrow_state.ys_pool[RANDOM_YARROW_SLOW].ysp_hash, &temp);
276 randomdev_hash_iterate(&context, &temp, sizeof(temp));
278 randomdev_hash_finish(&yarrow_state.ys_pool[RANDOM_YARROW_FAST].ysp_hash, &temp);
279 randomdev_hash_iterate(&context, &temp, sizeof(temp));
306 randomdev_hash_finish(&context, &temp);
307 randomdev_encrypt_init(&yarrow_state.ys_key, &temp);
310 randomdev_encrypt(&yarrow_state.ys_key, &yarrow_state.ys_counter, &temp, RANDOM_BLOCKSIZ
342 uint8_t temp[RANDOM_KEYSIZE]; local
[all...]
/freebsd-11-stable/lib/libusbhid/
H A Ddescr.c65 int temp = -1; local
74 temp = h.report_ID;
81 if (temp > 0)
82 return (temp);
85 ret = ioctl(fd, USB_GET_REPORT_ID, &temp);
91 ret = temp;
/freebsd-11-stable/contrib/gcc/
H A Dexplow.c325 rtx temp;
348 temp = simplify_unary_operation (code, to_mode, x, from_mode);
349 if (temp)
350 return temp;
360 temp = gen_rtx_LABEL_REF (to_mode, XEXP (x, 0));
361 LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x);
362 return temp;
366 temp = shallow_copy_rtx (x);
367 PUT_MODE (temp, to_mode);
368 return temp;
600 rtx temp = gen_reg_rtx (GET_MODE (x)); local
628 rtx temp = gen_reg_rtx (mode); local
652 rtx temp, insn, set; local
729 rtx temp; local
750 rtx temp; local
825 rtx temp; local
854 rtx temp; local
1427 rtx temp; local
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_ddi.c173 u32 temp, i, rx_ctl_val; local
232 temp = I915_READ(_FDI_RXA_MISC);
233 temp &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
234 I915_WRITE(_FDI_RXA_MISC, temp);
240 temp = I915_READ(DP_TP_STATUS(PORT_E));
241 if (temp & DP_TP_STATUS_AUTOTRAIN_DONE) {
254 temp = I915_READ(DDI_BUF_CTL(PORT_E));
255 temp &= ~DDI_BUF_CTL_ENABLE;
256 I915_WRITE(DDI_BUF_CTL(PORT_E), temp); local
260 temp
263 I915_WRITE(DP_TP_CTL(PORT_E), temp); local
927 uint32_t temp; local
950 I915_WRITE(TRANS_MSA_MISC(cpu_transcoder), temp); local
964 uint32_t temp; local
1049 I915_WRITE(TRANS_DDI_FUNC_CTL(cpu_transcoder), temp); local
1154 uint32_t temp, ret; local
[all...]
/freebsd-11-stable/lib/libfigpar/
H A Dstring_m.c97 char *temp; local
120 /* If replace is longer than find, we'll need to create a temp copy */
122 temp = malloc(slen + 1);
123 if (temp == NULL) /* could not allocate memory */
125 memcpy(temp, source, slen + 1);
127 temp = source;
130 p = source; t = temp; /* position elements */
146 if (temp != source)
147 free(temp);
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_paprd.c831 int temp; local
836 /*field_read("BB_paprd_trainer_cntl1.cf_paprd_lb_skip", &temp);*/
837 temp =
841 "BB_paprd_trainer_cntl1.cf_paprd_lb_skip=0x%x\n", temp);
842 /*field_read("BB_paprd_trainer_cntl1.cf_paprd_lb_enable", &temp);*/
843 temp =
847 "BB_paprd_trainer_cntl1.cf_paprd_lb_enable=0x%x\n", temp);
848 /*field_read("BB_paprd_trainer_cntl1.cf_paprd_tx_gain_force", &temp);*/
849 temp =
853 "BB_paprd_trainer_cntl1.cf_paprd_tx_gain_force=0x%x\n", temp);
2246 int temp, agc2_pwr; local
[all...]
/freebsd-11-stable/usr.bin/vgrind/
H A Dregexp.c177 register int temp; local
207 temp = OCNT(acs);
209 acs -= temp;
210 } while (temp != 0);
226 temp = OCNT(acs);
228 acs -= temp;
229 } while (temp != 0);
248 temp = OCNT(acs);
250 acs -= temp;
251 } while (temp !
[all...]
/freebsd-11-stable/contrib/ofed/opensm/include/opensm/
H A Dosm_mesh.h67 int temp; /* temporary holder for distance info */ member in struct:_mesh_node

Completed in 158 milliseconds

1234567891011>>