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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/gen/
fixunsgen_ieee754.c 62 UINTXX_T tmp; local in function:FIXUNSNAME
78 tmp = 1;
86 tmp <<= (unsigned int)ebits;
87 tmp |= *frac >> (fracbits - ebits);
90 if (fracbits == sizeof(tmp)*4) {
95 tmp = *frac--;
97 tmp <<= (unsigned int)fracbits;
98 tmp |= *frac--;
105 * If the input was negative, make tmp negative module 2^32.
108 tmp = -tmp
    [all...]
fixunsgen_ieee754.c 62 UINTXX_T tmp; local in function:FIXUNSNAME
78 tmp = 1;
86 tmp <<= (unsigned int)ebits;
87 tmp |= *frac >> (fracbits - ebits);
90 if (fracbits == sizeof(tmp)*4) {
95 tmp = *frac--;
97 tmp <<= (unsigned int)fracbits;
98 tmp |= *frac--;
105 * If the input was negative, make tmp negative module 2^32.
108 tmp = -tmp
    [all...]
  /src/lib/libintl/
strhash.c 48 uint32_t hash = 0, tmp; local in function:__intl_string_hash
53 tmp = hash & 0xF0000000;
54 if (tmp != 0) {
55 hash ^= tmp;
56 hash ^= tmp >> 24;
strhash.c 48 uint32_t hash = 0, tmp; local in function:__intl_string_hash
53 tmp = hash & 0xF0000000;
54 if (tmp != 0) {
55 hash ^= tmp;
56 hash ^= tmp >> 24;
  /src/sys/external/bsd/drm2/include/linux/
sort.h 44 void *tmp; local in function:sort
50 tmp = kmem_alloc(elemsize, KM_SLEEP);
51 kheapsort(array, nelem, elemsize, cmp, tmp);
52 kmem_free(tmp, elemsize);
sort.h 44 void *tmp; local in function:sort
50 tmp = kmem_alloc(elemsize, KM_SLEEP);
51 kheapsort(array, nelem, elemsize, cmp, tmp);
52 kmem_free(tmp, elemsize);
  /src/lib/libc/citrus/
citrus_db_hash.c 57 uint32_t hash = 0, tmp; local in function:_citrus_db_hash_std
63 tmp = hash & 0xF0000000;
64 if (tmp != 0) {
65 hash ^= tmp;
66 hash ^= tmp >> 24;
citrus_db_hash.c 57 uint32_t hash = 0, tmp; local in function:_citrus_db_hash_std
63 tmp = hash & 0xF0000000;
64 if (tmp != 0) {
65 hash ^= tmp;
66 hash ^= tmp >> 24;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mc/
nouveau_nvkm_subdev_mc_nv44.c 35 u32 tmp = nvkm_rd32(device, 0x10020c); local in function:nv44_mc_init
39 nvkm_wr32(device, 0x001700, tmp);
42 nvkm_wr32(device, 0x00170c, tmp);
nouveau_nvkm_subdev_mc_nv44.c 35 u32 tmp = nvkm_rd32(device, 0x10020c); local in function:nv44_mc_init
39 nvkm_wr32(device, 0x001700, tmp);
42 nvkm_wr32(device, 0x00170c, tmp);
  /src/games/hack/
rnd.c 96 int tmp = n; local in function:d
99 tmp += RND(x);
100 return (tmp);
rnd.c 96 int tmp = n; local in function:d
99 tmp += RND(x);
100 return (tmp);
  /src/games/warp/
warp.c 154 char tmp, *s, *tcbuf; local in function:main
369 getcmd(&tmp);
370 if (tmp == BREAKCH || tmp == INTRCH) {
375 getcmd(&tmp);
376 if (tmp == 'y' || tmp == 'Y')
377 tmp = 'q';
379 tmp = 1;
381 } while (tmp != INTRCH && tmp != BREAKCH && !strchr(" qQs",tmp))
    [all...]
warp.c 154 char tmp, *s, *tcbuf; local in function:main
369 getcmd(&tmp);
370 if (tmp == BREAKCH || tmp == INTRCH) {
375 getcmd(&tmp);
376 if (tmp == 'y' || tmp == 'Y')
377 tmp = 'q';
379 tmp = 1;
381 } while (tmp != INTRCH && tmp != BREAKCH && !strchr(" qQs",tmp))
    [all...]
  /src/lib/libc/quad/
fixunsdfdi.c 64 unsigned int tmp; local in function:__fixunsdfdi
82 tmp = x / ONE;
83 t.ul[L] = (unsigned int) (x - tmp * ONE);
84 t.ul[H] = tmp;
floatunditf_ieee754.c 72 quad_t tmp = x; /* must be signed */ local in function:__floatunditf
82 while (mask != 0 && (tmp >= 0)) {
85 if ((tmp & mask) == 0) {
86 tmp <<= width;
fixunsdfdi.c 64 unsigned int tmp; local in function:__fixunsdfdi
82 tmp = x / ONE;
83 t.ul[L] = (unsigned int) (x - tmp * ONE);
84 t.ul[H] = tmp;
floatunditf_ieee754.c 72 quad_t tmp = x; /* must be signed */ local in function:__floatunditf
82 while (mask != 0 && (tmp >= 0)) {
85 if ((tmp & mask) == 0) {
86 tmp <<= width;
  /src/lib/libc/stdio/
fdopen.c 67 int flags, oflags, fdflags, tmp; local in function:__weak_alias
89 tmp = fdflags & O_ACCMODE;
90 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
tempnam.c 65 gentemp(char *name, size_t len, const char *tmp, const char *pfx)
67 (void)snprintf(name, len, "%s%s%sXXXXXXXXXX", tmp, trailsl(tmp), pfx);
76 const char *tmp; local in function:tempnam
82 pfx = "tmp.";
84 if ((tmp = getenv("TMPDIR")) != NULL &&
85 (f = gentemp(name, (size_t)MAXPATHLEN, tmp, pfx)) != NULL)
fdopen.c 67 int flags, oflags, fdflags, tmp; local in function:__weak_alias
89 tmp = fdflags & O_ACCMODE;
90 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_ctxgm20b.c 35 int i, tmp; local in function:gm20b_grctx_generate_main
56 for (tmp = 0, i = 0; i < gr->gpc_nr; i++)
57 tmp |= ((1 << gr->tpc_nr[i]) - 1) << (i * 4);
58 nvkm_wr32(device, 0x4041c4, tmp);
  /src/tests/fs/common/
fstest_rumpfs.c 51 char tmp[64]; local in function:rumpfs_fstest_newfs
54 snprintf(tmp, sizeof(tmp), "%"PRId64, size);
55 res = setenv("RUMP_MEMLIMIT", tmp, 0);
  /src/tests/lib/libc/gen/posix_spawn/
h_spawnattr.c 53 char tmp; local in function:main
79 rd = read(parent_pipe, &tmp, 1);
82 getprogname(), tmp);
  /src/usr.bin/nice/
nice.c 68 long tmp; local in function:main
84 tmp = strtol(optarg, &ep, 10);
85 if (*ep != '\0' || tmp < INT_MIN || tmp > INT_MAX)
88 niceness = (int)tmp;

Completed in 66 milliseconds

1 2 3 4 5 6 7 8 91011>>