Searched refs:temp (Results 1 - 25 of 644) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/texinfo/lib/
H A Dxmalloc.c38 void *temp = malloc (bytes); local
40 if (!temp)
42 return (temp);
48 void *temp; local
51 temp = malloc (bytes);
53 temp = realloc (pointer, bytes);
55 if (!temp)
58 return (temp);
/freebsd-10.0-release/lib/libc/rpc/
H A Drpcdname.c53 char temp[256]; local
57 if (getdomainname(temp, sizeof(temp)) < 0)
59 if ((int) strlen(temp) > 0) {
60 default_domain = (char *)malloc((strlen(temp)+(unsigned)1));
63 (void) strcpy(default_domain, temp);
/freebsd-10.0-release/contrib/libreadline/
H A Dxmalloc.c58 PTR_T temp; local
60 temp = malloc (bytes);
61 if (temp == 0)
63 return (temp);
71 PTR_T temp; local
73 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
75 if (temp == 0)
77 return (temp);
H A Dmisc.c338 HIST_ENTRY *temp; local
340 temp = current_history ();
342 if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list))
344 temp = replace_history_entry (where_history (), rl_line_buffer, (histdata_t)rl_undo_list);
345 free (temp->line);
346 FREE (temp->timestamp);
347 free (temp);
466 HIST_ENTRY *temp; local
480 temp
505 HIST_ENTRY *old_temp, *temp; local
[all...]
/freebsd-10.0-release/bin/sh/
H A Dmktokens41 temp=`/usr/bin/mktemp -t ka`
42 cat > $temp <<\!
72 nl=`wc -l $temp`
74 awk '{print "#define " $1 " " NR-1}' $temp
78 awk '{print "\t" $2 ","}' $temp
84 $temp
87 sed 's/"//g' $temp | awk '
93 rm $temp
H A Dmkbuiltins37 temp=`/usr/bin/mktemp -t ka`
60 print $0}' $srcdir/builtins.def | sed 's/-[hj]//' > $temp
62 awk '/^[^#]/ { printf "\t%s,\n", $1}' $temp
73 }}' $temp
85 tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ < $temp |
97 awk '{ printf "int %s(int, char **);\n", $1}' $temp
98 rm -f $temp
/freebsd-10.0-release/contrib/libreadline/examples/
H A Drltest.c52 char *temp, *prompt; local
55 temp = (char *)NULL;
61 temp = readline (prompt);
64 if (!temp)
68 if (*temp)
70 fprintf (stderr, "%s\r\n", temp);
71 add_history (temp);
75 if (strcmp (temp, "quit") == 0)
78 if (strcmp (temp, "list") == 0)
90 free (temp);
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_indent51 temp=`mktemp -t osm_indent.XXXXXXXX`
53 | sed -e 's/^ \([A-Za-z_]\+[A-Za-z_0-9]*:\)$/\1/' > $temp
54 diff $f $temp > /dev/null || cat $temp > $f
55 rm -f $temp
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dcharable.c54 char temp[MB_LEN_MAX]; local
55 result = wctomb(temp, ch);
56 if (strlen(temp) == 1)
57 result = UChar(temp[0]);
71 char temp[2]; local
72 temp[0] = ch;
73 temp[1] = '\0';
74 if (mbtowc(&convert, temp, 1) >= 0)
/freebsd-10.0-release/contrib/texinfo/makeinfo/
H A Dfloat.c89 FLOAT_ELT *temp = float_stack; local
91 while (temp && strncmp (temp->number, chapter, l) == 0)
93 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type))
95 temp = temp->next;
140 FLOAT_ELT *temp = float_stack; local
142 while (temp)
144 if (STREQ (id, temp
160 FLOAT_ELT *temp; local
206 FLOAT_ELT *temp = (FLOAT_ELT *) reverse_list local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/md2/
H A Dmd2_one.c78 char temp[1024];
83 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
84 ebcdic2ascii(temp, d, chunk);
85 MD2_Update(&c,temp,chunk);
/freebsd-10.0-release/lib/libc/gen/
H A D_rand48.c35 unsigned short temp[2]; local
39 temp[0] = (unsigned short) accu; /* lower 16 bits */
43 temp[1] = (unsigned short) accu; /* middle 16 bits */
46 xseed[0] = temp[0];
47 xseed[1] = temp[1];
H A Dgetosreldate.c48 char *temp; local
50 if ((temp = getenv("OSVERSION"))) {
51 value = atoi(temp);
/freebsd-10.0-release/usr.sbin/vidcontrol/
H A Ddecode.c43 char temp[128]; local
48 if (!fgets(temp, sizeof(temp), fd))
50 } while (strncmp(temp, "begin ", 6));
51 sscanf(temp, "begin %o %s", (unsigned *)&n, temp);
54 if (!fgets(p = temp, sizeof(temp), fd))
96 if (!fgets(temp, sizeof(temp), f
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_hash.h50 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
51 const uint32_t hash_2_value = temp & HASH_2_MASK; \
53 = (temp ^ ((uint32_t)(cur[2]) << 8)) & mf->hash_mask
56 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
57 const uint32_t hash_2_value = temp & HASH_2_MASK; \
59 = (temp ^ ((uint32_t)(cur[2]) << 8)) & HASH_3_MASK; \
60 const uint32_t hash_value = (temp ^ ((uint32_t)(cur[2]) << 8) \
67 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
68 const uint32_t hash_2_value = temp & HASH_2_MASK; \
70 = (temp
[all...]
/freebsd-10.0-release/tools/tools/mid/
H A Dmid-master-index11 filelistmid=`perl -e "for(0 .. $count -1) {print qq{$file.temp.\\$_.mid }}"`
12 filelistirt=`perl -e "for(0 .. $count -1) {print qq{$file.temp.\\$_.irt }}"`
14 if mid-master $count $command $file.temp; then
15 sort -u -m -o $file.temp.mid $filelistmid &&
16 rm -f $filelistmid && mv $file.temp.mid $file.mid || exit 1
17 sort -u -m -o $file.temp.irt $filelistirt &&
18 rm -f $filelistirt && mv $file.temp.irt $file.irt || exit 1
/freebsd-10.0-release/lib/libusb/
H A Dlibusb20_desc.c351 uint8_t temp; local
356 temp = *((const uint8_t *)
358 buf[0] = temp;
369 uint16_t temp; local
375 temp = *((const uint16_t *)
377 buf[1] = (temp >> 8) & 0xFF;
378 buf[0] = temp & 0xFF;
389 uint32_t temp; local
394 temp = *((const uint32_t *)
396 buf[3] = (temp >> 2
410 uint64_t temp; local
585 uint8_t temp; local
604 uint16_t temp; local
624 uint32_t temp; local
647 uint64_t temp; local
675 uint16_t temp; local
[all...]
/freebsd-10.0-release/sys/dev/aic7xxx/
H A Daic7xxx_93cx6.c115 uint8_t temp; local
119 temp = sd->sd_MS ^ sd->sd_CS;
120 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
125 temp ^= sd->sd_DO;
126 SEEPROM_OUTB(sd, temp);
128 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
131 temp ^= sd->sd_DO;
141 uint8_t temp; local
143 temp = sd->sd_MS;
144 SEEPROM_OUTB(sd, temp);
163 uint8_t temp; local
234 uint8_t temp; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/md4/
H A Dmd4_one.c80 char temp[1024];
85 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
86 ebcdic2ascii(temp, d, chunk);
87 MD4_Update(&c,temp,chunk);
/freebsd-10.0-release/crypto/openssl/crypto/md5/
H A Dmd5_one.c80 char temp[1024];
85 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
86 ebcdic2ascii(temp, d, chunk);
87 MD5_Update(&c,temp,chunk);
/freebsd-10.0-release/tools/regression/lib/libc/stdio/
H A Dtest-print-positional.c62 const char *temp; local
114 temp = correct;
115 mbsrtowcs(wbuf2, &temp, sizeof wbuf2, NULL);
126 temp = correct2;
127 mbsrtowcs(wbuf2, &temp, sizeof wbuf2, NULL);
/freebsd-10.0-release/lib/libc/string/
H A Dswab.c44 unsigned long temp; local
53 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
/freebsd-10.0-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c129 } temp; member in struct:xz_dec
152 * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller
153 * must have set s->temp.pos to indicate how much data we are supposed
154 * to copy into s->temp.buf. Return true once s->temp.pos has reached
155 * s->temp.size.
160 b->in_size - b->in_pos, s->temp.size - s->temp.pos);
162 memcpy(s->temp.buf + s->temp
[all...]
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dbinemul.c53 bfd *temp; local
55 temp = *after_bfd;
61 (*after_bfd)->archive_next = temp;
79 bfd *temp; local
81 temp = *after_bfd;
87 (*after_bfd)->archive_next = temp;
/freebsd-10.0-release/lib/msun/src/
H A De_jn.c57 double a, b, temp, di; local
95 case 0: temp = cos(x)+sin(x); break;
96 case 1: temp = -cos(x)+sin(x); break;
97 case 2: temp = -cos(x)-sin(x); break;
98 case 3: temp = cos(x)-sin(x); break;
100 b = invsqrtpi*temp/sqrt(x);
105 temp = b;
107 a = temp;
118 temp = x*0.5; b = temp;
219 double a, b, temp; local
[all...]

Completed in 224 milliseconds

1234567891011>>