HomeSort by relevance Sort by last modified time
    Searched refs:nelems (Results 1 - 25 of 29) sorted by null

1 2

  /external/mesa3d/src/gallium/state_trackers/nine/
vertexdeclaration9.c 177 unsigned i, nelems; local
181 for (nelems = 0;
182 pElements[nelems].Stream != 0xFF;
183 ++nelems) {
184 user_assert(pElements[nelems].Type != D3DDECLTYPE_UNUSED, E_FAIL);
185 user_assert(!(pElements[nelems].Offset & 3), E_FAIL);
189 user_assert(nelems <= caps->MaxStreams, D3DERR_INVALIDCALL);
194 This->nelems = nelems;
195 This->decls = CALLOC(This->nelems+1, sizeof(D3DVERTEXELEMENT9))
281 unsigned texcount, i, betas, nelems = 0; local
    [all...]
vertexdeclaration9.h 42 unsigned nelems; member in struct:NineVertexDeclaration9
nine_ff.h 73 for (i = 0; i < context->vdecl->nelems; i++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lfunc.h 22 LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems);
23 LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems);
lmem.h 40 #define luaM_growvector(L,v,nelems,size,t,limit,e) \
41 if ((nelems)+1 > (size)) \
lcode.h 80 LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
lcode.c 867 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) {
868 int c = (nelems - 1)/LFIELDS_PER_FLUSH + 1;
  /external/lua/src/
lfunc.h 51 LUAI_FUNC CClosure *luaF_newCclosure (lua_State *L, int nelems);
52 LUAI_FUNC LClosure *luaF_newLclosure (lua_State *L, int nelems);
lmem.h 52 #define luaM_growvector(L,v,nelems,size,t,limit,e) \
53 if ((nelems)+1 > (size)) \
lcode.h 85 LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
lcode.c     [all...]
  /external/tensorflow/tensorflow/python/lib/core/
ndarray_tensor.cc 191 Status EncodePyBytesArray(PyArrayObject* array, tensorflow::int64 nelems,
203 char* data_start = base + sizeof(tensorflow::uint64) * nelems;
220 Status CopyTF_TensorStringsToPyArray(const TF_Tensor* src, uint64 nelems,
229 const size_t offsets_size = sizeof(uint64) * nelems;
237 " bytes of encoded strings for the tensor containing ", nelems,
243 for (int64 i = 0; i < nelems; ++i) {
273 const TF_Tensor* tensor, tensorflow::int64* nelems) {
280 *nelems = dims[0];
282 *nelems = 1;
285 *nelems *= dims[i]
368 int64 nelems = -1; local
429 tensorflow::int64 nelems = 1; local
    [all...]
  /external/elfutils/lib/
fixedsizehash.h 99 CONCAT(PREFIX,fshash_init) (size_t nelems)
106 if (nelems >= (max_size_t / 3) * 2)
113 nelems = next_prime (MAX ((nelems * 3) / 2, 10));
118 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1);
122 result->nslots = nelems;
  /external/tensorflow/tensorflow/core/kernels/
mkl_reshape_op.cc 71 const int64 nelems = input_in_mkl_format variable
106 const int64 missing = nelems / product;
108 context, product * missing == nelems,
110 "Input to reshape is a tensor with ", nelems,
116 context, shape.num_elements() == nelems,
117 errors::InvalidArgument("Input to reshape is a tensor with ", nelems,
  /external/libcxxabi/src/
fallback_malloc.cpp 101 const size_t nelems = alloc_size(len); local
111 if (p->len > nelems) { // chunk is larger, shorten, and return the tail
114 p->len = static_cast<heap_size>(p->len - nelems);
117 q->len = static_cast<heap_size>(nelems);
121 if (p->len == nelems) { // exact size match
  /bionic/libc/kernel/uapi/linux/
btf.h 77 __u32 nelems; member in struct:btf_array
  /external/kernel-headers/original/uapi/linux/
btf.h 105 __u32 nelems; member in struct:btf_array
  /external/selinux/libsepol/cil/src/
cil_symtab.h 68 uint32_t nelems; member in struct:cil_complex_symtab
cil_symtab.c 160 symtab->nelems = 0;
219 symtab->nelems++;
284 symtab->nelems = 0;
  /external/mdnsresponder/mDNSShared/
dnsextd.h 142 mDNSs32 nelems; // elements in table member in struct:__anon32627
dnsextd.c 845 Log("Dumping Lease Table Contents (table contains %d resource records)", d->nelems);
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
fuse_quantized_convolution.cc 197 int64 nelems = float_tensor.NumElements(); local
198 for (int64 n = 0; n < nelems; n++)
  /external/blktrace/
blktrace.h 49 unsigned int nelems; member in struct:per_cpu_info
  /external/adhd/cras/src/tests/
alsa_jack_unittest.cc 208 size_t nelems,
215 for (unsigned int i = 1; i < nelems; i++)
239 EXPECT_GE(snd_hctl_elem_next_called, nelems + nhdmi_jacks);
240 EXPECT_GE(snd_hctl_elem_get_name_called, nelems + njacks);
255 size_t nelems,
264 for (size_t i = 0; i < nelems; i++) {
    [all...]
  /external/tensorflow/tensorflow/java/src/main/native/
tensor_jni.cc 116 const int nelems = env->GetArrayLength(array); local
123 size_t to_copy = nelems * elemByteSize(dtype); \

Completed in 815 milliseconds

1 2