Searched refs:tmp (Results 51 - 75 of 1975) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb83.C6 int tmp = x; local
8 y = tmp;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20000718.c7 float tmp = (float)foo(2.0,1.0); local
12 bar(&tmp, arg);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Di386-mmx-3.c10 long long tmp = i; local
11 return (v4hi) tmp;
H A Duninit-6.c23 struct tree *tmp = malloc (sizeof (struct tree)); \
24 tmp->car = 0; tmp->cdr = 0; tmp->type = TYPE; \
25 tmp->data = VALUE; \
27 LAST->cdr = tmp; \
29 TREE->car = tmp; \
30 LAST = tmp; \
/openbsd-current/regress/lib/libc/strtod/
H A Dstrtodtest.c16 char *tmp="0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002"; local
19 d = strtod(tmp, NULL);
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dtimecheck.c13 struct tm *tmp; variable in typeref:struct:tm
28 tmp = gmtime (&t);
29 if ( tmp == NULL ||
31 tmp->tm_year < min_year || tmp->tm_year > max_year) {
39 (long)(tmp->tm_year) + 1900, tmp->tm_mon + 1, tmp->tm_mday,
40 tmp->tm_hour, tmp
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonDepDecoders.inc17 static DecodeStatus s6_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t,
19 signedDecoder<6>(MI, tmp, Decoder);
22 static DecodeStatus s31_1ImmDecoder(MCInst &MI, unsigned tmp, uint64_t,
24 signedDecoder<12>(MI, tmp, Decoder);
27 static DecodeStatus s30_2ImmDecoder(MCInst &MI, unsigned tmp, uint64_t,
29 signedDecoder<13>(MI, tmp, Decoder);
32 static DecodeStatus s29_3ImmDecoder(MCInst &MI, unsigned tmp, uint64_t,
34 signedDecoder<14>(MI, tmp, Decoder);
37 static DecodeStatus s3_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t,
39 signedDecoder<3>(MI, tmp, Decode
[all...]
/openbsd-current/sys/dev/pci/drm/radeon/
H A Drs400.c66 uint32_t tmp; local
71 tmp = RREG32_MC(RS480_GART_CACHE_CNTRL);
72 if ((tmp & RS480_GART_CACHE_INVALIDATE) == 0)
113 uint32_t tmp; local
115 tmp = RREG32_MC(RS690_AIC_CTRL_SCRATCH);
116 tmp |= RS690_DIS_OUT_OF_PCI_GART_ACCESS;
117 WREG32_MC(RS690_AIC_CTRL_SCRATCH, tmp);
152 tmp = REG_SET(RS690_MC_AGP_TOP, rdev->mc.gtt_end >> 16);
153 tmp |= REG_SET(RS690_MC_AGP_START, rdev->mc.gtt_start >> 16);
155 WREG32_MC(RS690_MCCFG_AGP_LOCATION, tmp);
199 uint32_t tmp; local
243 uint32_t tmp; local
311 uint32_t tmp; local
[all...]
H A Dradeon_clocks.c284 u32 tmp = RREG32_PLL(RADEON_PPLL_REF_DIV); local
287 (tmp & R300_PPLL_REF_DIV_ACC_MASK) >> R300_PPLL_REF_DIV_ACC_SHIFT;
289 p1pll->reference_div = tmp & RADEON_PPLL_REF_DIV_MASK;
477 uint32_t tmp; local
484 tmp = RREG32_PLL(RADEON_CLK_PIN_CNTL);
485 tmp &= ~RADEON_DONT_USE_XTALIN;
486 WREG32_PLL(RADEON_CLK_PIN_CNTL, tmp);
488 tmp = RREG32_PLL(RADEON_SCLK_CNTL);
489 tmp &= ~RADEON_SCLK_SRC_SEL_MASK;
490 WREG32_PLL(RADEON_SCLK_CNTL, tmp);
562 uint32_t tmp; local
[all...]
/openbsd-current/gnu/gcc/libgomp/config/linux/
H A Dsem.c54 int old, tmp = *sem, wake; local
58 old = tmp;
60 tmp = __sync_val_compare_and_swap (sem, old, wake);
62 while (old != tmp);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/
H A Dinline1.C24 Foo tmp; local
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Doperators33.C23 struct fcell *tmp = new struct fcell; local
24 tmp->fd = fd1;
25 tmp->next = top;
26 top = tmp ;
/openbsd-current/sys/arch/loongson/include/
H A Dasm.h5 #define HW_GET_CPU_INFO(ci, tmp) \
/openbsd-current/sys/arch/octeon/include/
H A Dasm.h5 #define HW_GET_CPU_INFO(ci, tmp) \
/openbsd-current/lib/libc/quad/
H A Dfixunsdfdi.c50 unsigned int tmp; local
68 tmp = x / ONE;
69 t.ul[L] = (unsigned int) (x - tmp * ONE);
70 t.ul[H] = tmp;
/openbsd-current/sys/dev/pci/drm/i915/
H A Di915_fixed.h77 u64 tmp; local
79 tmp = mul_u32_u32(val, mul.val);
80 tmp = DIV_ROUND_UP_ULL(tmp, 1 << 16);
81 WARN_ON(tmp > U32_MAX);
83 return (u32)tmp;
89 u64 tmp; local
91 tmp = mul_u32_u32(val.val, mul.val);
92 tmp = tmp >> 1
99 u64 tmp; local
109 u64 tmp; local
120 u64 tmp; local
130 u64 tmp; local
141 u64 tmp; local
[all...]
/openbsd-current/games/hack/
H A Drnd.c89 int tmp = n; local
91 while(n--) tmp += RND(x);
92 return(tmp);
H A Dhack.worm.c78 int tmp; local
80 for(tmp=1; tmp<32; tmp++) if(!wsegs[tmp]) {
81 mtmp->wormno = tmp;
92 int tmp = mtmp->wormno; local
94 if(!tmp) return;
95 wheads[tmp] = wsegs[tmp]
107 int tmp = mtmp->wormno; local
136 int tmp; local
151 int tmp = mtmp->wormno; local
166 int tmp = mtmp->wormno; local
175 wormsee(unsigned tmp) argument
202 int tmp,tmp2; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D991118-1.c1 struct tmp struct
25 struct tmp
26 sub (struct tmp tmp) argument
28 tmp.field ^= 0x0008765412345678LL;
29 return tmp;
53 struct tmp tmp = {0x123, 0x123456789ABCDLL}; variable in typeref:struct:tmp
64 tmp = sub (tmp);
[all...]
/openbsd-current/usr.sbin/dhcpd/
H A Dconvert.c82 u_int32_t tmp = htonl(val); local
84 memcpy(obuf, &tmp, sizeof(tmp));
90 int32_t tmp = htonl(val); local
92 memcpy(obuf, &tmp, sizeof(tmp));
98 u_int16_t tmp = htons(val); local
100 memcpy(obuf, &tmp, sizeof(tmp));
106 int16_t tmp local
[all...]
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dfiles.c84 struct file_adds *tmp; local
87 tmp = NULL;
110 for (tmp = f->child; tmp->next != NULL; tmp =tmp->next) {
111 if (strcmp (tmp->name, cp) == 0) {
112 f = tmp;
116 if (strcmp (tmp->name, cp) == 0) {
117 f=tmp;
234 struct file_adds *tmp = NULL; local
283 struct file_adds *tmp; local
[all...]
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_rect.c57 u64 tmp; local
65 tmp = mul_u32_u32(src, dst - *clip);
72 return DIV_ROUND_UP_ULL(tmp, dst);
74 return DIV_ROUND_DOWN_ULL(tmp, dst);
257 struct drm_rect tmp; local
260 tmp = *r;
263 r->x1 = width - tmp.x2;
264 r->x2 = width - tmp.x1;
268 r->y1 = height - tmp.y2;
269 r->y2 = height - tmp
331 struct drm_rect tmp; local
[all...]
/openbsd-current/usr.bin/compress/
H A Dznew53 tmp=`mktemp /tmp/znewXXXXXXXXXX` || {
54 echo "$prog: cannot create tmp file"
57 trap 'rm -f "$tmp"; exit 1' HUP INT QUIT PIPE TERM
59 # Do the actual work, producing a file "$tmp"
60 if uncompress -f -c < "$filez" | gzip -f $gzipflags -o "$tmp"; then
62 if test $kflag -eq 1 && smaller "$filez" "$tmp"; then
65 rm -f "$tmp"
68 if ! checkfile "$tmp"; then
69 echo "$prog: integrity check of $tmp faile
[all...]
/openbsd-current/lib/libc/gen/
H A Dtree.c102 struct rb_entry *tmp; local
104 tmp = RBE_RIGHT(rbe);
105 RBE_RIGHT(rbe) = RBE_LEFT(tmp);
107 RBE_PARENT(RBE_LEFT(tmp)) = rbe;
110 RBE_PARENT(tmp) = parent;
113 RBE_LEFT(parent) = tmp;
115 RBE_RIGHT(parent) = tmp;
117 RBH_ROOT(rbt) = tmp;
119 RBE_LEFT(tmp) = rbe;
120 RBE_PARENT(rbe) = tmp;
136 struct rb_entry *tmp; local
169 struct rb_entry *parent, *gparent, *tmp; local
221 struct rb_entry *tmp; local
318 struct rb_entry *tmp; local
405 struct rb_entry *tmp; local
446 struct rb_entry *tmp = RBH_ROOT(rbt); local
469 struct rb_entry *tmp = RBH_ROOT(rbt); local
[all...]
/openbsd-current/sys/kern/
H A Dsubr_tree.c102 struct rb_entry *tmp; local
104 tmp = RBE_RIGHT(rbe);
105 RBE_RIGHT(rbe) = RBE_LEFT(tmp);
107 RBE_PARENT(RBE_LEFT(tmp)) = rbe;
110 RBE_PARENT(tmp) = parent;
113 RBE_LEFT(parent) = tmp;
115 RBE_RIGHT(parent) = tmp;
117 RBH_ROOT(rbt) = tmp;
119 RBE_LEFT(tmp) = rbe;
120 RBE_PARENT(rbe) = tmp;
136 struct rb_entry *tmp; local
169 struct rb_entry *parent, *gparent, *tmp; local
221 struct rb_entry *tmp; local
318 struct rb_entry *tmp; local
404 struct rb_entry *tmp; local
444 struct rb_entry *tmp = RBH_ROOT(rbt); local
466 struct rb_entry *tmp = RBH_ROOT(rbt); local
[all...]

Completed in 164 milliseconds

1234567891011>>