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

1234567891011>>

/netbsd-current/external/bsd/ntp/dist/tests/ntpd/
H A Dt-ntp_scanner.c13 const char * temp = keyword(999); local
14 //printf("%s\n",temp);
15 TEST_ASSERT_EQUAL_STRING("(keyword #999 not found)",temp);
21 const char * temp = keyword(T_Server); local
22 //printf("%s",temp); //143 or 401 ?
23 TEST_ASSERT_EQUAL_STRING("server",temp);
54 int temp = lex_pop_file(); local
56 TEST_ASSERT_FALSE(temp);
62 int temp = is_integer("123"); local
63 TEST_ASSERT_TRUE(temp);
81 int temp; local
95 int temp; local
109 int temp ; local
120 int temp; local
[all...]
/netbsd-current/external/gpl2/texinfo/dist/lib/
H A Dxmalloc.c40 void *temp = malloc (bytes); local
42 if (!temp)
44 return (temp);
50 void *temp; local
53 temp = malloc (bytes);
55 temp = realloc (pointer, bytes);
57 if (!temp)
60 return (temp);
/netbsd-current/sys/arch/hppa/spmath/
H A Dmpyaccu.c53 struct mdsfu_register temp; local
56 impyu(&opnd1,&opnd2,&temp);
59 if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
64 if ((result_hi += (unsigned)temp.rslt_hi + carry) <
65 (unsigned)temp.rslt_hi) overflow = true;
H A Dmpyaccs.c52 struct mdsfu_register temp; local
55 impys(&opnd1,&opnd2,&temp);
58 if ((result_lo += (unsigned)temp.rslt_lo) < (unsigned)temp.rslt_lo)
63 sign = result_hi ^ temp.rslt_hi;
64 result_hi += temp.rslt_hi + carry;
65 if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0) overflow = true;
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Drefidsmear.c22 l_fp temp; local
28 temp.l_uf = (r << 10); /* 22 fractional bits */
30 temp.l_ui = (r >> 22) & 0x3;
31 temp.l_ui |= ~(temp.l_ui & 2) + 1;
33 return temp;
40 uint32_t temp; local
52 temp = (num.l_ui << 22) | (num.l_uf >> 10);
55 temp |= UINT32_C(0xFE000000);
57 // printf("%03d %08x: ", (temp >> 2
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/i386/
H A Dsfp-exceptions.c59 struct fenv temp; local
60 asm volatile ("fnstenv\t%0" : "=m" (temp));
61 temp.__status_word |= FP_EX_DENORM;
62 asm volatile ("fldenv\t%0" : : "m" (temp));
77 struct fenv temp; local
78 asm volatile ("fnstenv\t%0" : "=m" (temp));
79 temp.__status_word |= FP_EX_OVERFLOW;
80 asm volatile ("fldenv\t%0" : : "m" (temp));
85 struct fenv temp; local
86 asm volatile ("fnstenv\t%0" : "=m" (temp));
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/nds32/lib2csrc-mculib/
H A D_clzsi2.c31 int temp; local
35 if (temp = val >> j)
44 val = temp;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/nds32/lib2csrc-mculib/
H A D_clzsi2.c31 int temp; local
35 if (temp = val >> j)
44 val = temp;
/netbsd-current/external/mit/isl/dist/
H A Disl_imath.c35 mpz_t temp; local
36 mp_int_init(&temp);
38 mp_int_set_uvalue(&temp, op2);
39 mp_int_mul(op1, &temp, &temp);
40 mp_int_add(rop, &temp, rop);
42 mp_int_clear(&temp);
47 mpz_t temp; local
48 mp_int_init(&temp);
50 mp_int_set_uvalue(&temp, op
62 mpz_t temp; local
76 mpz_t temp; local
[all...]
/netbsd-current/crypto/external/cpl/trousers/dist/src/tspi/
H A Dlog.c36 char temp[64]; local
42 __tspi_memset(temp, 0, sizeof(temp));
46 fprintf(stdout, "%s\n", temp);
47 __tspi_memset(temp, 0, sizeof(temp));
49 snprintf(&temp[(i%16)*3], 4, "%.2X ", blob[i]);
51 fprintf(stdout, "%s\n", temp);
/netbsd-current/external/gpl3/gdb/dist/readline/readline/
H A Dxmalloc.c57 PTR_T temp; local
59 temp = malloc (bytes);
60 if (temp == 0)
62 return (temp);
68 PTR_T temp; local
70 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
72 if (temp == 0)
74 return (temp);
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/
H A Dxmalloc.c57 PTR_T temp; local
59 temp = malloc (bytes);
60 if (temp == 0)
62 return (temp);
68 PTR_T temp; local
70 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
72 if (temp == 0)
74 return (temp);
/netbsd-current/external/gpl3/gdb/dist/readline/readline/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...]
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/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...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/i386/
H A Dsfp-exceptions.c55 struct fenv temp; local
64 asm volatile ("fnstenv\t%0" : "=m" (temp));
65 temp.__status_word |= FP_EX_DENORM;
66 asm volatile ("fldenv\t%0" : : "m" (temp));
76 asm volatile ("fnstenv\t%0" : "=m" (temp));
77 temp.__status_word |= FP_EX_OVERFLOW;
78 asm volatile ("fldenv\t%0" : : "m" (temp));
83 asm volatile ("fnstenv\t%0" : "=m" (temp));
84 temp.__status_word |= FP_EX_UNDERFLOW;
85 asm volatile ("fldenv\t%0" : : "m" (temp));
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprofng/common/
H A Dcpu_frequency.h130 char temp[1024]; local
136 while (fgets (temp, 1024, procf) != NULL)
138 if (strncmp (temp, "processor", strlen ("processor")) == 0)
140 char *val = strchr (temp, ':');
144 else if (strncmp (temp, "model", strlen ("model")) == 0
145 && strstr (temp, "name") == 0)
147 char *val = strchr (temp, ':');
150 else if (strncmp (temp, "cpu family", strlen ("cpu family")) == 0)
152 char *val = strchr (temp, ':');
156 else if (strncmp (temp, "cp
[all...]
/netbsd-current/lib/libc/arch/m68k/gen/
H A Dldexp_881.c49 double temp; local
52 : "=f" (temp)
54 return (temp);
/netbsd-current/lib/libc/arch/m68k/hardfloat/
H A Dldexp_881.c49 double temp; local
52 : "=f" (temp)
54 return (temp);
/netbsd-current/external/gpl2/texinfo/dist/makeinfo/
H A Dfloat.c91 FLOAT_ELT *temp = float_stack; local
93 while (temp && strncmp (temp->number, chapter, l) == 0)
95 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type))
97 temp = temp->next;
142 FLOAT_ELT *temp = float_stack; local
144 while (temp)
146 if (STREQ (id, temp
162 FLOAT_ELT *temp; local
208 FLOAT_ELT *temp = (FLOAT_ELT *) reverse_list local
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/md2/
H A Dmd2_one.c32 char temp[1024];
36 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
37 ebcdic2ascii(temp, d, chunk);
38 MD2_Update(&c, temp, chunk);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/md2/
H A Dmd2_one.c38 char temp[1024];
42 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
43 ebcdic2ascii(temp, d, chunk);
44 MD2_Update(&c, temp, chunk);
/netbsd-current/crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c154 #define temp xtemp.x8 macro
158 *((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]);
159 *((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]);
160 *((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]);
161 *((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]);
162 *((word32*)(b )) = *((const word32*)T1[temp[0][0]])
163 ^ *((const word32*)T2[temp[1][1]])
164 ^ *((const word32*)T3[temp[2][2]])
165 ^ *((const word32*)T4[temp[3][3]]);
166 *((word32*)(b + 4)) = *((const word32*)T1[temp[
232 #undef temp macro
242 word8 temp[4][4]; local
319 #define temp macro
397 #undef temp macro
411 word8 temp[4], shift; local
[all...]
/netbsd-current/external/public-domain/xz/dist/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...]
/netbsd-current/crypto/external/cpl/trousers/dist/src/tcs/
H A Dlog.c35 char temp[64]; local
41 memset(temp, 0, sizeof(temp));
46 fprintf(stdout, "%s %s\n", szDescriptor, temp);
48 syslog(LOG_DEBUG, "%s", temp);
49 memset(temp, 0, sizeof(temp));
51 snprintf(&temp[(i%16)*3], 4, "%.2X ", blob[i]);
56 fprintf(stdout, "%s %s\n", szDescriptor, temp);
58 syslog(LOG_DEBUG, "%s", temp);
[all...]
/netbsd-current/sys/dev/ic/
H A Dsmc93cx6.c113 u_int32_t temp; local
121 temp = sd->sd_MS ^ sd->sd_CS;
122 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
131 temp ^= sd->sd_DO;
132 SEEPROM_OUTB(sd, temp);
134 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
137 temp ^= sd->sd_DO;
142 temp ^= sd->sd_DO;
143 SEEPROM_OUTB(sd, temp);
145 SEEPROM_OUTB(sd, temp
[all...]

Completed in 428 milliseconds

1234567891011>>