| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| ecalloc.c | 50 void *tmp = calloc (number, size); local 52 if (tmp == NULL && number * size != 0) 54 return tmp;
|
| emalloc.c | 50 void *tmp = malloc (sz); local 52 if (tmp == NULL && sz != 0) 54 return tmp;
|
| erealloc.c | 50 void *tmp = realloc (ptr, sz); local 52 if (tmp == NULL && sz != 0) 54 return tmp;
|
| estrdup.c | 50 char *tmp = strdup (str); local 52 if (tmp == NULL) 54 return tmp;
|
| getipnodebyaddr.c | 48 struct hostent *tmp; local 50 tmp = gethostbyaddr (src, len, af); 51 if (tmp == NULL) { 67 tmp = copyhostent (tmp); 68 if (tmp == NULL) { 72 return tmp;
|
| getipnodebyname.c | 52 struct hostent *tmp; local 55 tmp = gethostbyname2 (name, af); 61 tmp = gethostbyname (name); 63 if (tmp == NULL) { 79 tmp = copyhostent (tmp); 80 if (tmp == NULL) { 84 return tmp;
|
| /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/external/lgpl3/gmp/dist/mpz/ |
| cmp_si.c | 39 mpz_t tmp; variable 41 PTR(tmp) = tt; variable 42 ALLOC(tmp) = 2; variable 43 mpz_set_si (tmp, v_digit); 44 return mpz_cmp (u, tmp);
|
| /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/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_grow.c | 24 mp_digit *tmp; local 37 tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * size); 38 if (tmp == NULL) { 44 a->dp = tmp;
|
| bn_mp_reduce_2k_setup.c | 24 mp_int tmp; local 26 if ((res = mp_init(&tmp)) != MP_OKAY) { 31 if ((res = mp_2expt(&tmp, p)) != MP_OKAY) { 32 mp_clear(&tmp); 36 if ((res = s_mp_sub(&tmp, a, &tmp)) != MP_OKAY) { 37 mp_clear(&tmp); 41 *d = tmp.dp[0]; 42 mp_clear(&tmp);
|
| bn_mp_reduce_2k_setup_l.c | 24 mp_int tmp; local 26 if ((res = mp_init(&tmp)) != MP_OKAY) { 30 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) { 34 if ((res = s_mp_sub(&tmp, a, d)) != MP_OKAY) { 39 mp_clear(&tmp);
|
| bn_mp_shrink.c | 23 mp_digit *tmp; local 30 if ((tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * used)) == NULL) { 33 a->dp = tmp;
|
| bn_mp_zero.c | 24 mp_digit *tmp; local 29 tmp = a->dp; 31 *tmp++ = 0;
|
| /src/crypto/external/bsd/libsaslc/dist/src/ |
| msg.c | 64 char *tmp; local 70 if (asprintf(&tmp, "libsaslc: %s", fmt) != -1) { 71 vsyslog(priority, tmp, ap); 72 free(tmp);
|
| /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/external/gpl3/gdb/dist/gnulib/import/ |
| pipe.c | 36 int tmp[2]; local 37 int result = _pipe (tmp, 4096, _O_BINARY); 40 fd[0] = tmp[0]; 41 fd[1] = tmp[1];
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| aarch64-atomic-inst.c | 20 unsigned long tmp, cond; local 31 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \ 42 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| share-env-with-gdbserver.c | 33 char *tmp = (char *) malloc (1); local 43 free (tmp);
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| pipe.c | 36 int tmp[2]; local 37 int result = _pipe (tmp, 4096, _O_BINARY); 40 fd[0] = tmp[0]; 41 fd[1] = tmp[1];
|