HomeSort by relevance Sort by last modified time
    Searched defs:nr (Results 101 - 125 of 296) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_split_inplace.c 175 GLuint j, nr; local
181 nr = MIN2( available, remaining );
182 nr -= (nr - first) % incr;
186 outprim->end = (nr == remaining && prim->end);
188 outprim->count = nr;
194 if (nr == remaining) {
197 j += nr;
202 j += nr - (first - incr);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch_shade_pipeline.c 72 unsigned nr = MAX2( vs->info.num_inputs, local
91 fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
draw_pt_fetch_shade_pipeline_llvm.c 81 const unsigned nr = MAX2( shader->base.info.num_inputs, local
91 fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
162 variant = draw_llvm_create_variant(fpme->llvm, nr, key);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_push.c 92 unsigned size, nr; local
94 nr = push;
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
98 size = ctx->vertex_words * nr;
102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, ctx->push->cur);
105 count -= nr;
106 elts += nr;
108 if (nr != push) {
124 unsigned size, nr; local
126 nr = push
156 unsigned size, nr; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_push.c 69 unsigned size, nr; local
71 nr = push;
73 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
75 size = ctx->vertex_words * nr;
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
83 count -= nr;
84 elts += nr;
86 if (nr != push) {
102 unsigned size, nr; local
104 nr = push
135 unsigned size, nr; local
    [all...]
nv50_transfer.c 188 unsigned nr; local
192 nr = PUSH_AVAIL(push);
193 assert(nr >= 16);
194 nr = MIN2(count, nr - 1);
195 nr = MIN2(nr, NV04_PFIFO_MAX_PACKET_LEN);
197 BEGIN_NI04(push, NV50_2D(SIFC_DATA), nr);
198 PUSH_DATAp(push, src, nr);
200 src += nr;
400 unsigned nr; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 69 const GLuint nr = VB->Count; local
89 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) {
250 const GLuint nr = VB->Count; local
267 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) {
427 const GLuint nr = VB->Count; local
429 const GLuint nr = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->count; local
443 if (nr > 1) {
452 for (j = 0; j < nr; j++, STRIDE_F(normal,nstride)) {
530 const GLuint nr = VB->Count; local
532 const GLuint nr = VB->AttribPtr[_TNL_ATTRIB_NORMAL]->count local
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_dmatmp2.h 75 GLuint *elts, GLuint nr )
80 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
84 if (i < nr) {
94 GLuint start, GLuint nr )
99 for ( i = 0 ; i+1 < nr ; i+=2, start += 2 ) {
103 if (i < nr) {
171 GLuint j, nr; local
180 for (j = start; j + 1 < count; j += nr - 1 ) {
184 nr = MIN2( dmasz, count - j );
185 dest = ALLOC_ELTS( (nr-1)*2 )
206 GLuint j, nr; local
325 GLuint j, nr; local
369 GLuint j, nr; local
431 GLuint j, nr; local
484 GLuint j, nr; local
550 GLuint j, nr; local
574 GLuint j, nr; local
613 GLuint j, nr; local
642 GLuint j, nr; local
694 GLuint j, nr; local
725 GLuint j, nr; local
756 GLuint j, nr; local
783 GLuint j, nr; local
816 GLuint j, nr; local
877 GLuint j, nr; local
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_inplace.c 175 GLuint j, nr; local
181 nr = MIN2( available, remaining );
182 nr -= (nr - first) % incr;
186 outprim->end = (nr == remaining && prim->end);
188 outprim->count = nr;
194 if (nr == remaining) {
197 j += nr;
202 j += nr - (first - incr);
  /external/opencv/cv/src/
cvkdtree.cpp 245 int nr = -1; local
273 nr = tr->find_ortho_range(bounds_min, bounds_max, results);
281 return nr;
  /external/openfst/src/include/fst/
shortest-distance.h 200 Weight &nr = rdistance_[arc.nextstate]; local
204 nr = Plus(nr, w);
205 if (!nd.Member() || !nr.Member()) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-distance.h 163 Weight &nr = rdistance_[arc.nextstate]; local
167 nr = Plus(nr, w);
  /external/svox/pico/lib/
picokdt.h 127 picoos_uint8 nr; /* 0 if no class set, nr of values set otherwise */ member in struct:__anon28576
332 5 nr words left
333 6 nr words right
334 7 nr syllables right
380 7 nr words left (previous) to any bound
381 8 nr syllables left to any bound
382 9 nr words right (following) to any bound
383 10 nr syllables right to any bound
384 11 nr words right to predicted "1" prominence (foot
    [all...]
  /external/tcpdump/
print-cnfp.c 85 register const struct nfrec *nr; local
115 nr = (const struct nfrec *)&nh[1];
118 nr = (const struct nfrec *)&nh->sequence;
124 for (; nrecs-- && (const u_char *)(nr + 1) <= snapend; nr++) {
129 EXTRACT_32BITS(&nr->start_time)/1000,
130 EXTRACT_32BITS(&nr->start_time)%1000,
131 EXTRACT_32BITS(&nr->last_time)/1000,
132 EXTRACT_32BITS(&nr->last_time)%1000);
137 (EXTRACT_32BITS(&nr->masks) >> 24) & 0xff)
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
signal_processing_unittest.cc 30 int nr = 2; local
38 EXPECT_EQ(0, WEBRTC_SPL_GET_BYTE(&B, nr));
39 WEBRTC_SPL_SET_BYTE(&d_ptr2, 1, nr);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_matching.h 42 /*Id nr of point*/
60 int nr; member in class:db_Bucket_f
69 /*Id nr of point*/
87 int nr; member in class:db_Bucket_u
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_feature_matching.h 42 /*Id nr of point*/
60 int nr; member in class:db_Bucket_f
69 /*Id nr of point*/
87 int nr; member in class:db_Bucket_u
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_matching.h 42 /*Id nr of point*/
60 int nr; member in class:db_Bucket_f
69 /*Id nr of point*/
87 int nr; member in class:db_Bucket_u
  /system/core/toolbox/
cat.c 158 ssize_t nr, nw, off; local
173 while ((nr = read(rfd, buf, bsize)) > 0)
174 for (off = 0; nr; nr -= nw, off += nw)
175 if ((nw = write(wfd, buf + off, (size_t)nr)) < 0)
180 if (nr < 0) {
iftop.c 104 int ret, nr, fd; local
140 for (nr = 0; nr < MAX_IF; nr++) {
172 nr++;
185 return nr;
196 static int print_interfaces(struct if_stats *old, struct if_stats *new, int nr)
200 while (nr--) {
265 int nr; local
268 nr = get_interfaces(ifs[toggle])
    [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbisetb.cpp 635 RangeDescriptor *nr = new RangeDescriptor(*this, status); local
636 if(nr == 0) {
641 delete nr;
646 nr->fStartChar = where;
648 nr->fNext = this->fNext;
649 this->fNext = nr;
  /external/chromium_org/third_party/libusb/src/libusb/os/
openbsd_usb.c 704 int fd, nr = 1; local
720 if ((ioctl(fd, USB_SET_SHORT_XFER, &nr)) < 0)
723 nr = read(fd, transfer->buffer, transfer->length);
725 nr = write(fd, transfer->buffer, transfer->length);
728 if (nr < 0)
731 itransfer->transferred = nr;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_emit.c 265 const uint nr = i915->current.sampler_enable_nr; local
266 if (nr) {
270 OUT_BATCH(_3DSTATE_MAP_STATE | (3 * nr));
285 assert(count == nr);
348 int nr = i915->fs->num_constants ? local
351 nr += 4*additional_constants(i915);
352 *batch_space = nr;
361 const uint nr = i915->fs->num_constants + additional_constants(i915); local
363 assert(nr < I915_MAX_CONSTANT);
364 if (nr) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 136 LLVMValueRef nr, pixxf, pixyf; local
142 nr = lp_build_const_int32(gallivm, i);
147 *pixoffx = LLVMBuildInsertElement(builder, *pixoffx, pixxf, nr, "");
148 *pixoffy = LLVMBuildInsertElement(builder, *pixoffy, pixyf, nr, "");
378 LLVMValueRef nr = lp_build_const_int32(gallivm, i); local
381 pixoffx = LLVMBuildInsertElement(builder, pixoffx, pixxf, nr, "");
382 pixoffy = LLVMBuildInsertElement(builder, pixoffy, pixyf, nr, "");
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_vbo.c 416 const unsigned nr = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); local
418 BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U32), nr);
419 PUSH_DATAp(push, map, nr);
421 map += nr;
422 count -= nr;

Completed in 2526 milliseconds

1 2 3 45 6 7 8 91011>>