Searched refs:smallest (Results 1 - 15 of 15) sorted by relevance

/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c135 unsigned smallest = 0; local
141 smallest = i;
144 else if (hwtnl->index_cache[prim][i].gen_nr < smallest)
146 smallest = i;
151 assert (smallest != IDX_CACHE_MAX);
153 pipe_resource_reference( &hwtnl->index_cache[prim][smallest].buffer,
157 debug_printf("%s discard smallest %d/%d\n", __FUNCTION__,
158 smallest, smallest_size);
160 i = smallest;
/external/speex/libspeex/
H A Dstereo.c151 spx_word32_t largest, smallest; local
178 smallest = e_right;
182 smallest = e_left;
189 smallest = VSHR32(smallest, shift);
190 balance = DIV32(largest, ADD32(smallest, 1));
195 balance=(largest+1.)/(smallest+1.);
216 /*fprintf (stderr, "%d %d %d %d\n", largest, smallest, balance_id, e_ratio);*/
/external/lz4/examples/
H A DHCStreaming_ringBuffer.c149 size_t smallest = r0; local
150 if (r1<r0) smallest = r1;
151 result += smallest;
/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp193 double smallest = SkTMin(allRoots[0], allRoots[1]); local
195 smallest = SkTMin(smallest, allRoots[2]);
197 SK_ALWAYSBREAK(smallest < 0);
198 SK_ALWAYSBREAK(smallest >= -1);
H A DPathOpsAngleIdeas.cpp53 int smallest = -1; local
65 smallest = idx;
69 REPORTER_ASSERT(reporter, smallest >= 0);
71 return i[1][smallest];
H A DSkpSkGrTest.cpp308 int smallest = SK_MaxS32; local
311 if (smallest > data->fError[index]) {
312 smallest = data->fError[index];
/external/lz4/lib/
H A Dlz4.c839 const BYTE* smallest = (const BYTE*) source; local
841 if ((streamPtr->dictSize>0) && (smallest>dictEnd)) smallest = dictEnd;
842 LZ4_renormDictT(streamPtr, smallest);
901 const BYTE* smallest = dictEnd; local
902 if (smallest > (const BYTE*) source) smallest = (const BYTE*) source;
903 LZ4_renormDictT((LZ4_stream_t_internal*)LZ4_dict, smallest);
/external/libvorbis/doc/
H A D02-bitpacking.tex25 smallest integer storage representation offered by a platform. On
30 size that is a grouped multiple of this smallest size.
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_sad4d_sse2.asm252 ; so in high bit depth even the smallest width (4) needs 128bits i.e. XMM
/external/mesa3d/src/mesa/program/
H A Dprog_execute.c1372 const float largest = 1.884467e+19, smallest = 5.42101e-20; local
1391 else if (r < smallest) {
1392 r = smallest;
1399 else if (r > -smallest) {
1400 r = -smallest;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb69 The smallest value of the next input symbol that has
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp5256 all five filters and select the filter that produces the smallest sum of absolute values per row.
5284 size_t smallest = 0; local
5320 /*check if this is smallest sum (or if type == 0 it's the first case so always store the values)*/
5321 if(type == 0 || sum[type] < smallest)
5324 smallest = sum[type];
5342 float smallest = 0;
5367 /*check if this is smallest sum (or if type == 0 it's the first case so always store the values)*/
5368 if(type == 0 || sum[type] < smallest)
5371 smallest = sum[type];
5403 size_t smallest
[all...]
/external/bison/data/
H A Dyacc.c117 # Return the smallest int type able to handle numbers ranging from
/external/skia/src/core/
H A DSkPath.cpp2130 SkScalar smallest = SkTMin(fCurrPt.fX, SkTMin(fCurrPt.fY, SkTMin(fLastPt.fX, fLastPt.fY))); local
2132 largest = SkTMax(largest, -smallest);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas516 /// What is the smallest token index (indexing from 0) for this node
590 /// What is the smallest token index (indexing from 0) for this node

Completed in 349 milliseconds