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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/file/dist/src/
gmtime_r.c 20 struct tm *tmp = gmtime(t); local
21 if (tmp == NULL)
23 memcpy(tm, tmp, sizeof(*tm));
24 return tmp;
localtime_r.c 20 struct tm *tmp = localtime(t); local
21 if (tmp == NULL)
23 memcpy(tm, tmp, sizeof(*tm));
24 return tmp;
  /src/external/cddl/osnet/sys/util/
qsort.h 36 void *tmp; local
38 tmp = kmem_alloc(size, KM_SLEEP);
39 kheapsort(base, nmemb, size, compar, tmp);
40 kmem_free(tmp, size);
  /src/lib/libc/gen/
fixunsgen_ieee754.c 62 UINTXX_T tmp; local
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
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
50 tmp = kmem_alloc(elemsize, KM_SLEEP);
51 kheapsort(array, nelem, elemsize, cmp, tmp);
52 kmem_free(tmp, elemsize);
  /src/external/bsd/libbind/dist/bsd/
putenv.c 20 char *tmp; local
22 for (tmp = str; *tmp && (*tmp != '='); tmp++)
25 return (setenv(str, tmp, 1));
  /src/external/bsd/openldap/dist/libraries/libldap/
addentry.c 40 LDAPMessage *tmp, *prev = NULL; local
45 for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
46 prev = tmp;
48 if ( tmp == NULL )
52 if ( tmp->lm_chain )
53 tmp->lm_chain->lm_chain_tail = (*list)->lm_chain_tail
    [all...]
  /src/lib/libc/citrus/
citrus_db_hash.c 57 uint32_t hash = 0, tmp; local
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
39 nvkm_wr32(device, 0x001700, tmp);
42 nvkm_wr32(device, 0x00170c, tmp);
  /src/external/bsd/kyua-cli/dist/utils/process/
fdstream_test.cpp 62 std::string tmp; local
63 rend >> tmp; local
64 ATF_REQUIRE_EQ(tmp, "1Test");
65 rend >> tmp; local
66 ATF_REQUIRE_EQ(tmp, "1message");
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
sha256.c 48 zio_cksum_t tmp; local
52 SHA256_Final((unsigned char *)&tmp, &ctx);
61 zcp->zc_word[0] = BE_64(tmp.zc_word[0]);
62 zcp->zc_word[1] = BE_64(tmp.zc_word[1]);
63 zcp->zc_word[2] = BE_64(tmp.zc_word[2]);
64 zcp->zc_word[3] = BE_64(tmp.zc_word[3]);
85 zio_cksum_t tmp; local
87 zio_checksum_SHA512_native(buf, size, ctx_template, &tmp);
88 zcp->zc_word[0] = BSWAP_64(tmp.zc_word[0]);
89 zcp->zc_word[1] = BSWAP_64(tmp.zc_word[1])
    [all...]
skein_zfs.c 60 zio_cksum_t tmp; local
62 zio_checksum_skein_native(buf, size, ctx_template, &tmp);
63 zcp->zc_word[0] = BSWAP_64(tmp.zc_word[0]);
64 zcp->zc_word[1] = BSWAP_64(tmp.zc_word[1]);
65 zcp->zc_word[2] = BSWAP_64(tmp.zc_word[2]);
66 zcp->zc_word[3] = BSWAP_64(tmp.zc_word[3]);
  /src/external/cddl/osnet/include/
sha2.h 14 uint8_t tmp[SHA256_DIGEST_LENGTH]; local
16 SHA256_Final(tmp, ctx);
17 memcpy(digest, &tmp, sizeof(tmp));
  /src/games/hack/
rnd.c 96 int tmp = n; local
99 tmp += RND(x);
100 return (tmp);
  /src/games/warp/
warp.c 154 char tmp, *s, *tcbuf; local
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
82 tmp = x / ONE;
83 t.ul[L] = (unsigned int) (x - tmp * ONE);
84 t.ul[H] = tmp;
  /src/lib/libc/stdio/
fdopen.c 67 int flags, oflags, fdflags, tmp; local
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
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
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
79 rd = read(parent_pipe, &tmp, 1);
82 getprogname(), tmp);
  /src/usr.bin/nice/
nice.c 68 long tmp; local
84 tmp = strtol(optarg, &ep, 10);
85 if (*ep != '\0' || tmp < INT_MIN || tmp > INT_MAX)
88 niceness = (int)tmp;
  /src/external/bsd/kyua-cli/dist/utils/
stream.cpp 74 char tmp[1024]; local
76 input.read(tmp, sizeof(tmp));
78 buffer.write(tmp, input.gcount());
  /src/external/bsd/tmux/dist/
cmd-rename-session.c 52 char *newname, *tmp; local
54 tmp = format_single_from_target(item, args_string(args, 0));
55 newname = session_check_name(tmp);
57 cmdq_error(item, "invalid session: %s", tmp);
58 free(tmp);
61 free(tmp);
  /src/external/cddl/osnet/sys/sys/
sha2.h 13 uint8_t tmp[SHA256_DIGEST_LENGTH]; local
15 SHA256_Final(tmp, ctx);
16 memcpy(digest, &tmp, sizeof(tmp));

Completed in 54 milliseconds

1 2 3 4 5 6 7 8 91011>>