HomeSort by: relevance | last modified time | path
    Searched refs:temp (Results 1 - 25 of 1591) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/ntp/dist/tests/ntpd/
t-ntp_scanner.c 13 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...]
  /src/external/gpl2/texinfo/dist/lib/
xmalloc.c 40 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);
  /src/sys/arch/hppa/spmath/
mpyaccu.c 53 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;
mpyaccs.c 52 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;
  /src/external/bsd/ntp/dist/libntp/
refidsmear.c 22 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 >> 24) & 0xFF, (temp & 0x00FFFFFF) )
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/nds32/lib2csrc-mculib/
_clzsi2.c 31 int temp; local
35 if (temp = val >> j)
44 val = temp;
  /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/lib2csrc-mculib/
_clzsi2.c 31 int temp; local
35 if (temp = val >> j)
44 val = temp;
  /src/external/mit/isl/dist/
isl_imath.c 35 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, op2)
62 mpz_t temp; local
76 mpz_t temp; local
    [all...]
  /src/crypto/external/cpl/trousers/dist/src/tspi/
log.c 36 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);
  /src/external/gpl3/gdb/dist/readline/readline/
xmalloc.c 57 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);
  /src/external/gpl3/gdb.old/dist/readline/readline/
xmalloc.c 57 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);
  /src/external/gpl3/gcc/dist/libgcc/config/i386/
sfp-exceptions.c 55 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...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/
sfp-exceptions.c 55 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...]
  /src/external/gpl3/gdb/dist/readline/readline/examples/
rltest.c 56 char *temp, *prompt; local
63 temp = (char *)NULL;
69 temp = readline (prompt);
72 if (!temp)
76 if (*temp)
78 fprintf (stderr, "%s\r\n", temp);
79 add_history (temp);
83 if (strcmp (temp, "quit") == 0)
86 if (strcmp (temp, "list") == 0)
98 free (temp);
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
rltest.c 52 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...]
  /src/external/gpl3/binutils/dist/gprofng/common/
cpu_frequency.h 130 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, "cpu MHz", strlen ("cpu MHz")) == 0
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/common/
cpu_frequency.h 130 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, "cpu MHz", strlen ("cpu MHz")) == 0
    [all...]
  /src/lib/libc/arch/m68k/gen/
ldexp_881.c 49 double temp; local
52 : "=f" (temp)
54 return (temp);
  /src/lib/libc/arch/m68k/hardfloat/
ldexp_881.c 49 double temp; local
52 : "=f" (temp)
54 return (temp);
  /src/external/gpl2/texinfo/dist/makeinfo/
float.c 91 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->id)
162 FLOAT_ELT *temp; local
208 FLOAT_ELT *temp = (FLOAT_ELT *) reverse_list local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/md2/
md2_one.c 38 char temp[1024];
42 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
43 ebcdic2ascii(temp, d, chunk);
44 MD2_Update(&c, temp, chunk);
  /src/crypto/external/bsd/openssl/dist/crypto/md2/
md2_one.c 38 char temp[1024];
42 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
43 ebcdic2ascii(temp, d, chunk);
44 MD2_Update(&c, temp, chunk);
  /src/crypto/external/bsd/openssl.old/dist/crypto/md2/
md2_one.c 32 char temp[1024];
36 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
37 ebcdic2ascii(temp, d, chunk);
38 MD2_Update(&c, temp, chunk);
  /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 154 #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[1][0]]
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...]
  /src/external/public-domain/xz/dist/src/liblzma/lz/
lz_encoder_hash.h 50 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 ^ ((uint32_t)(cur[2]) << 8)) & HASH_3_MASK;
    [all...]

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>