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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/arch/m68k/gen/
ldexp_881.c 49 double temp; local
52 : "=f" (temp)
54 return (temp);
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);
ldexp_881.c 49 double temp; local
52 : "=f" (temp)
54 return (temp);
  /src/sys/dev/raidframe/
rf_evenodd_dags.c 80 RF_PhysDiskAddr_t *temp; local
82 temp = asmap->parityInfo;
84 asmap->qInfo = temp;
128 RF_PhysDiskAddr_t *temp; local
130 temp = asmap->parityInfo;
132 asmap->qInfo = temp;
141 RF_PhysDiskAddr_t *temp; local
143 temp = asmap->parityInfo;
145 asmap->qInfo = temp;
155 RF_PhysDiskAddr_t *temp; local
    [all...]
rf_evenodd_dags.c 80 RF_PhysDiskAddr_t *temp; local
82 temp = asmap->parityInfo;
84 asmap->qInfo = temp;
128 RF_PhysDiskAddr_t *temp; local
130 temp = asmap->parityInfo;
132 asmap->qInfo = temp;
141 RF_PhysDiskAddr_t *temp; local
143 temp = asmap->parityInfo;
145 asmap->qInfo = temp;
155 RF_PhysDiskAddr_t *temp; local
    [all...]
rf_pqdeg.c 97 RF_PhysDiskAddr_t *temp; local
99 temp = asmap->parityInfo;
101 asmap->qInfo = temp;
136 RF_PhysDiskAddr_t *temp; local
138 temp = asmap->parityInfo;
140 asmap->qInfo = temp;
153 RF_PhysDiskAddr_t *temp; local
155 temp = asmap->parityInfo;
157 asmap->qInfo = temp;
192 RF_PhysDiskAddr_t *temp; local
    [all...]
  /src/sys/arch/hppa/spmath/
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;
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;
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;
  /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);
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/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...]
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/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);
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/external/gpl3/gcc/dist/libgcc/config/nds32/lib2csrc-mculib/
_clzsi2.c 31 int temp; local
35 if (temp = val >> j)
44 val = temp;
_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;
_clzsi2.c 31 int temp; local
35 if (temp = val >> j)
44 val = temp;
  /src/bin/dd/
dd_swab.c 56 char temp; local
66 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = 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/mit/libuv/dist/test/
test-uname.c 35 char temp[256]; local
54 snprintf(temp, sizeof(temp), "%s.%s", buf.version, buf.release);
55 ASSERT_OK(strcmp(buffer.release, temp));

Completed in 64 milliseconds

1 2 3 4 5 6 7 8 91011>>