Searched refs:temp (Results 76 - 100 of 666) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/libreadline/
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...]
H A Dhistory.c217 HIST_ENTRY *temp; local
219 temp = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY));
221 temp->line = string ? savestring (string) : string;
222 temp->data = (char *)NULL;
223 temp->timestamp = ts;
225 return temp;
268 HIST_ENTRY *temp; local
309 temp = alloc_history_entry (string, hist_inittime ());
312 the_history[history_length - 1] = temp;
373 HIST_ENTRY *temp, *old_valu local
[all...]
/freebsd-10.1-release/contrib/libreadline/examples/
H A Dmanexamp.c90 int temp = start; local
92 end = temp;
/freebsd-10.1-release/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-10.1-release/contrib/apr/atomic/unix/
H A Dppc.c44 apr_uint32_t prev, temp; local
52 : "=&r" (prev), "=&r" (temp), "=m" (*mem)
61 apr_uint32_t temp; local
69 : "=&r" (temp), "=m" (*mem)
/freebsd-10.1-release/contrib/ncurses/panel/
H A Dpanel.c59 char temp[32]; local
62 sprintf(temp, "ptr:%p", ptr);
64 strcpy(temp, "<null>");
65 return _nc_visbuf(temp);
/freebsd-10.1-release/usr.bin/vgrind/
H A Dregexp.c182 register int temp; local
212 temp = OCNT(acs);
214 acs -= temp;
215 } while (temp != 0);
231 temp = OCNT(acs);
233 acs -= temp;
234 } while (temp != 0);
253 temp = OCNT(acs);
255 acs -= temp;
256 } while (temp !
[all...]
/freebsd-10.1-release/lib/libedit/
H A Dfilecomplete.c73 char *temp; local
80 temp = strchr(txt + 1, '/');
81 if (temp == NULL) {
82 temp = strdup(txt + 1);
83 if (temp == NULL)
86 len = temp - txt + 1; /* text until string after slash */
87 temp = malloc(len);
88 if (temp == NULL)
90 (void)strncpy(temp, txt + 1, len - 2);
91 temp[le
131 char *temp; local
391 char *temp; local
[all...]
/freebsd-10.1-release/sys/dev/usb/
H A Dusb_pf.c388 uint32_t temp; local
425 temp = device_get_unit(bus->bdev);
427 up->up_busunit = htole32(temp);
435 temp = usbpf_aggregate_xferflags(&xfer->flags);
436 up->up_flags = htole32(temp);
437 temp = usbpf_aggregate_status(&xfer->flags_int);
438 up->up_status = htole32(temp);
439 temp = xfer->error;
440 up->up_error = htole32(temp);
441 temp
[all...]
/freebsd-10.1-release/contrib/gdb/include/
H A Dobstack.h176 PTR_INT_TYPE temp; /* Temporary for some macros. */
367 Also, we can avoid using the `temp' slot, to make faster code. */
525 ( (h)->temp = (length), \
526 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
527 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0))
530 ( (h)->temp = (length), \
531 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
532 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0), \
533 _obstack_memcpy ((h)->next_free, (where), (h)->temp), \
534 (h)->next_free += (h)->temp)
175 PTR_INT_TYPE temp; /* Temporary for some macros. */ member in struct:obstack
[all...]
/freebsd-10.1-release/gnu/usr.bin/grep/
H A Dobstack.h169 PTR_INT_TYPE temp; /* Temporary for some macros. */
361 Also, we can avoid using the `temp' slot, to make faster code. */
510 ( (h)->temp = (length), \
511 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
512 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0))
515 ( (h)->temp = (length), \
516 (((h)->next_free + (h)->temp > (h)->chunk_limit) \
517 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0), \
518 _obstack_memcpy ((h)->next_free, (char *) (where), (h)->temp), \
519 (h)->next_free += (h)->temp)
168 PTR_INT_TYPE temp; /* Temporary for some macros. */ member in struct:obstack
[all...]
/freebsd-10.1-release/contrib/gperf/src/
H A Doutput.cc121 KeywordExt_List *temp; local
122 for (temp = _head; temp->rest(); temp = temp->rest())
124 _max_hash_value = temp->first()->_hash_value;
137 for (KeywordExt_List *temp = _head; temp; temp = temp
945 KeywordExt_List *temp; local
1005 KeywordExt_List *temp; local
1101 output_keyword_entry(KeywordExt *temp, int stringpool_index, const char *indent) argument
1176 KeywordExt_List *temp; local
1505 KeywordExt_List *temp = list; local
[all...]
/freebsd-10.1-release/contrib/ncurses/menu/
H A Dm_item_new.c66 wchar_t *temp = 0; local
71 && (temp = typeCalloc(wchar_t, (2 + (unsigned)count))) != 0)
75 mbstowcs(temp, s, (unsigned)count);
77 if (!iswprint((wint_t) temp[n]))
82 free(temp);
/freebsd-10.1-release/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpmap.c302 struct snmp_oid2str *temp, *prev; local
314 SLIST_FOREACH(temp, headp, link) {
315 if ((rc = asn_compare_oid(&(entry->var), &(temp->var))) <= 0)
317 prev = temp;
324 if (strncmp(temp->string, entry->string, entry->strlen)) {
326 "mappings: old - %s, new - %s", temp->string,
337 SLIST_INSERT_AFTER(temp, entry, link);
509 struct snmp_index_entry *temp, *prev; local
522 SLIST_FOREACH(temp, &snmptoolctx->snmp_tablelist, link) {
523 if ((rc = asn_compare_oid(&(entry->var), &(temp
599 struct enum_type *temp; local
701 struct enum_pair *temp; local
732 struct snmp_oid2str *temp; local
751 struct snmp_oid2str *temp; local
882 struct snmp_oid2str *temp; local
907 struct snmp_index_entry *temp; local
[all...]
/freebsd-10.1-release/contrib/ncurses/ncurses/trace/
H A Dvisbuf.c188 char temp[CCHARW_MAX + 80]; local
189 int j = wctomb(temp, c), k;
191 sprintf(temp, "\\u%08X", (unsigned) c);
192 j = (int) strlen(temp);
195 tp = _nc_vischar(tp, UChar(temp[k]));
300 char temp[80]; local
301 _nc_vischar(temp, UChar(PUTC_buf[k]));
302 result = _nc_trace_bufcat(bufnum, temp);
308 char temp[80];
309 _nc_vischar(temp, UCha
[all...]
/freebsd-10.1-release/contrib/texinfo/info/
H A Dinfo.c521 char *temp = filename_non_directory (directory_name);
523 if (temp != directory_name)
525 if (HAVE_DRIVE (directory_name) && temp == directory_name + 2)
529 *temp = '.';
530 temp += 2;
532 temp[-1] = 0;
574 NODE *temp;
576 temp = build_message_node (format, arg1, arg2);
579 inform_in_echo_area (temp->contents);
580 free (temp
520 char *temp = filename_non_directory (directory_name); local
572 NODE *temp; local
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/powerpc/
H A Ddt_isadep.c65 uintptr_t temp; local
103 temp = (text[i] & 0x03fffffc);
106 temp += symp->st_value + i * 4;
110 if (temp & 0x02000000) {
111 temp |= (UINTPTR_MAX - 0x03ffffff);
114 if (temp >= symp->st_value &&
115 temp <= (symp->st_value + symp->st_size))
/freebsd-10.1-release/contrib/ntp/sntp/tests/
H A DkeyFile.c58 struct key temp; local
60 temp.key_id = key_id;
61 temp.key_len = key_len;
62 strlcpy(temp.type, type, sizeof(temp.type));
63 memcpy(temp.key_seq, key_seq, key_len);
65 return CompareKeys(temp, actual);
/freebsd-10.1-release/contrib/ee/
H A Dnew_curse.c1045 int temp; local
1051 temp = Low_byte;
1053 High_byte = temp;
1534 int p1, p2, temp; local
1592 temp = p1;
1594 p2 = temp;
1647 int temp; local
1652 temp = Temp_Stack[--place];
1653 printf("%d", temp);
1657 temp
1835 int temp; local
2091 struct _line *temp; local
2231 char temp; local
2261 char temp; local
[all...]
/freebsd-10.1-release/contrib/texinfo/makeinfo/
H A Dmakeinfo.c950 char *temp = xmalloc (strlen (string) + 1);
959 c = temp[temp_index++] = string[string_index++];
963 temp[temp_index - 1] = ' ';
970 temp[temp_index] = 0;
971 strcpy (string, temp);
972 free (temp);
980 int temp = search_forward (string, input_text_offset);
982 int tt = (temp < 0) ? input_text_length : temp + strlen (string);
990 if (temp <
946 char *temp = xmalloc (strlen (string) + 1); local
976 int temp = search_forward (string, input_text_offset); local
1202 char *temp; local
1561 char *html_name, *directory_part, *basename_part, *temp; local
1664 int temp = 0; local
1681 COMMAND_LINE_DEFINE *temp; local
2332 BRACE_ELEMENT *temp; local
2402 BRACE_ELEMENT *temp; local
2693 int temp = output_paragraph_offset; local
2932 int temp = UNMETA (output_paragraph[i]); local
3083 char *temp; local
3486 DEFINE *temp; local
3514 DEFINE *temp, *last; local
3548 DEFINE *temp; local
3702 char *temp; local
3809 char *temp; local
[all...]
H A Dfiles.c382 char *temp = strrchr (basename, '.');
383 if (temp)
384 *temp = 0;
685 DELAYED_WRITE *temp = (DELAYED_WRITE *) reverse_list
692 while (temp)
694 delayed_buf = find_and_load (temp->filename, 0);
704 fs_error (temp->filename);
708 output_stream = fopen (temp->filename, "w");
711 fs_error (temp->filename);
715 if (fwrite (delayed_buf, 1, temp
379 char *temp = strrchr (basename, '.'); local
681 DELAYED_WRITE *temp = (DELAYED_WRITE *) reverse_list local
[all...]
H A Dindex.c107 INDEX_ELT *temp;
109 while ((temp = index))
111 free (temp->entry);
112 free (temp->entry_text);
115 /* free (temp->node); */
117 free (temp);
325 char *temp;
327 temp = xmalloc (1 + strlen (name) + strlen ("index"));
328 sprintf (temp, "%sindex", name);
329 define_user_command (temp, gen_inde
104 INDEX_ELT *temp; local
320 char *temp; local
416 char *temp = xmalloc (strlen (name) + sizeof ("index")); local
581 INDEX_ELT *temp; local
[all...]
/freebsd-10.1-release/contrib/groff/src/preproc/grn/
H A Dhdb.cpp60 register ELT *temp; local
62 temp = (ELT *) malloc(sizeof(ELT));
63 temp->nextelt = *db;
64 temp->type = type;
65 temp->ptlist = pointlist;
66 temp->brushf = brush;
67 temp->size = size;
68 temp->textpt = text;
69 *db = temp;
70 return (temp);
[all...]
/freebsd-10.1-release/contrib/ipfilter/lib/
H A Dparseipfexpr.c40 char *temp, *arg, *s, *t, *ops, *error; local
48 temp = strdup(line);
49 if (temp == NULL) {
57 for (s = temp; *s != '\0'; ) {
69 if (temp[strlen(temp) - 1] != ';') {
77 for (ops = strtok(temp, ";"); ops != NULL; ops = strtok(NULL, ";")) {
262 free(temp);
280 if (temp != NULL)
281 free(temp);
[all...]
/freebsd-10.1-release/contrib/binutils/bfd/
H A Dformat.c217 const bfd_target *temp; local
240 temp = BFD_SEND_FMT (abfd, _bfd_check_format, (abfd));
242 if (temp)
245 right_targ = temp;
250 if (temp == bfd_default_vector[0])
257 matching_vector[match_count] = temp;

Completed in 363 milliseconds

1234567891011>>