Home
last modified time | relevance | path

Searched refs:nelem (Results 1 – 25 of 69) sorted by path

123

/freebsd/contrib/file/src/
H A Dcdf.c1088 size_t nelem = inp - *info; in cdf_read_property_info() local
1092 inp += nelem; in cdf_read_property_info()
/freebsd/contrib/libedit/
H A Dhistory.c834 history_save_fp(TYPE(History) *h, size_t nelem, FILE *fp) in history_save_fp() argument
852 if (nelem != (size_t)-1) { in history_save_fp()
853 for (retval = HFIRST(h, &ev); retval != -1 && nelem-- > 0; in history_save_fp()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc7025 INTERCEPTOR(int, getloadavg, double *loadavg, int nelem) {
7027 COMMON_INTERCEPTOR_ENTER(ctx, getloadavg, loadavg, nelem);
7028 int res = REAL(getloadavg)(loadavg, nelem);
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.td43 class VTVec<int nelem, ValueType elt, int value>
44 : ValueType<!mul(nelem, elt.Size), value> {
45 let nElem = nelem;
52 class VTScalableVec<int nelem, ValueType elt, int value>
53 : VTVec<nelem, elt, value> {
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.td258 class IIT_Vec<int nelem, int num> : IIT_Base<num> {
260 !and(vti.isVector, !eq(vti.nElem, nelem)));
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Domp_lib.f90.var870 function kmp_calloc(nelem, elsize) bind(c)
873 integer (kind=kmp_size_t_kind), value :: nelem
H A Domp_lib.h.var967 function kmp_calloc(nelem, elsize) bind(c)
970 integer (kind=kmp_size_t_kind), value :: nelem
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h3764 extern void *___kmp_thread_calloc(kmp_info_t *th, size_t nelem,
3771 #define __kmp_thread_calloc(th, nelem, elsize) \ argument
3772 ___kmp_thread_calloc((th), (nelem), (elsize)KMP_SRC_LOC_CURR)
4030 KMP_EXPORT void *kmpc_calloc(size_t nelem, size_t elsize);
H A Dkmp_alloc.cpp1131 void *kmpc_calloc(size_t nelem, size_t elsize) { in kmpc_calloc() argument
1133 ptr = bgetz(__kmp_entry_thread(), (bufsize)(nelem * elsize + sizeof(ptr))); in kmpc_calloc()
1194 void *___kmp_thread_calloc(kmp_info_t *th, size_t nelem, in ___kmp_thread_calloc() argument
1198 (int)nelem, (int)elsize KMP_SRC_LOC_PARM)); in ___kmp_thread_calloc()
1199 ptr = bgetz(th, (bufsize)(nelem * elsize)); in ___kmp_thread_calloc()
H A Dkmp_ftn_entry.h1340 void *FTN_STDCALL FTN_CALLOC(size_t KMP_DEREF nelem, size_t KMP_DEREF elsize) { in FTN_CALLOC() argument
1342 return kmpc_calloc(KMP_DEREF nelem, KMP_DEREF elsize); in FTN_CALLOC()
H A Dkmp_settings.cpp3529 int nelem = 1; in __kmp_stg_parse_proc_bind() local
3532 nelem++; in __kmp_stg_parse_proc_bind()
3537 if (__kmp_nested_proc_bind.size < nelem) { in __kmp_stg_parse_proc_bind()
3541 sizeof(kmp_proc_bind_t) * nelem); in __kmp_stg_parse_proc_bind()
3545 __kmp_nested_proc_bind.size = nelem; in __kmp_stg_parse_proc_bind()
3547 __kmp_nested_proc_bind.used = nelem; in __kmp_stg_parse_proc_bind()
3581 if (i >= nelem) { in __kmp_stg_parse_proc_bind()
3609 int nelem = __kmp_nested_proc_bind.used; in __kmp_stg_print_proc_bind() local
3615 if (nelem == 0) { in __kmp_stg_print_proc_bind()
3620 for (i = 0; i < nelem; i++) { in __kmp_stg_print_proc_bind()
[all …]
H A Dkmp_stub.cpp174 void *kmp_calloc(size_t nelem, size_t elsize) { in kmp_calloc() argument
178 res = _aligned_recalloc(NULL, nelem, elsize, 1); in kmp_calloc()
180 res = calloc(nelem, elsize); in kmp_calloc()
/freebsd/contrib/lua/src/
H A Dlmem.h88 LUAI_FUNC void *luaM_shrinkvector_ (lua_State *L, void *block, int *nelem,
/freebsd/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c679 ih.nelem = atoi(eq); in setinfo()
H A Dh_lfsr.c71 hi.nelem = 65536; in main()
/freebsd/contrib/one-true-awk/
H A Dawk.h109 int nelem; /* elements in table right now */ member
H A Drun.c2081 u = ((Array *) x->sval)->nelem; /* GROT. should be function*/ in bltin()
H A Dtran.c165 ap->nelem = 0; in makesymtab()
189 tp->nelem--; in freesymtab()
193 if (tp->nelem != 0) in freesymtab()
217 tp->nelem--; in freeelem()
241 tp->nelem++; in setsymtab()
242 if (tp->nelem > FULLTAB * tp->size) in setsymtab()
/freebsd/contrib/sendmail/libmilter/
H A Dengine.c1760 int elem, nelem; local
1762 nelem = 0;
1766 ++nelem;
1768 if (nelem == 0)
1772 s = (char **)malloc((nelem + 1) * (sizeof *s));
1776 for (i = 0, elem = 0; i < len && elem < nelem; i++)
/freebsd/contrib/sendmail/libsmdb/
H A Dsmdb1.c519 hash_info.nelem = db_params->smdbp_num_elements;
/freebsd/contrib/sendmail/src/
H A Dmap.c2183 # define h_nelem nelem
H A Dmilter.c3369 int elem, nelem; local
3382 nelem = 0;
3386 ++nelem;
3388 if (nelem == 0)
3392 s = (char **)malloc((nelem + 1) * (sizeof(*s)));
3396 for (i = 0, elem = 0; i < rlen && elem < nelem; i++)
3407 *pargc = nelem;
3411 for (elem = 0; elem < nelem; elem++)
H A Dsasl.c79 sm_sasl_calloc(nelem, elemsize) in sm_sasl_calloc() argument
80 SM_SASL_SIZE_T nelem; in sm_sasl_calloc()
86 size = (size_t) nelem * (size_t) elemsize;
/freebsd/crypto/openssl/crypto/property/
H A Dproperty.c91 size_t nelem; member
647 state->nelem++; in impl_cache_flush_cache()
665 state.nelem = 0; in ossl_method_cache_flush_some()
674 store->cache_nelem = state.nelem; in ossl_method_cache_flush_some()
/freebsd/crypto/openssl/crypto/
H A Dsparse_array.c54 size_t nelem; member
153 return sa == NULL ? 0 : sa->nelem; in ossl_sa_num()
161 if (sa == NULL || sa->nelem == 0) in ossl_sa_get()
211 sa->nelem--; in ossl_sa_set()
213 sa->nelem++; in ossl_sa_set()

123