/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_draw_arrays.c | 135 unsigned smallest = 0; in retrieve_or_generate_indices() local 141 smallest = i; in retrieve_or_generate_indices() 144 else if (hwtnl->index_cache[prim][i].gen_nr < smallest) in retrieve_or_generate_indices() 146 smallest = i; in retrieve_or_generate_indices() 151 assert (smallest != IDX_CACHE_MAX); in retrieve_or_generate_indices() 153 pipe_resource_reference( &hwtnl->index_cache[prim][smallest].buffer, in retrieve_or_generate_indices() 158 smallest, smallest_size); in retrieve_or_generate_indices() 160 i = smallest; in retrieve_or_generate_indices()
|
/external/speex/libspeex/ |
D | stereo.c | 151 spx_word32_t largest, smallest; in speex_encode_stereo_int() local 178 smallest = e_right; in speex_encode_stereo_int() 182 smallest = e_left; in speex_encode_stereo_int() 189 smallest = VSHR32(smallest, shift); in speex_encode_stereo_int() 190 balance = DIV32(largest, ADD32(smallest, 1)); in speex_encode_stereo_int() 195 balance=(largest+1.)/(smallest+1.); in speex_encode_stereo_int()
|
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 193 double smallest = SkTMin(allRoots[0], allRoots[1]); in DEF_TEST() local 195 smallest = SkTMin(smallest, allRoots[2]); in DEF_TEST() 197 SK_ALWAYSBREAK(smallest < 0); in DEF_TEST() 198 SK_ALWAYSBREAK(smallest >= -1); in DEF_TEST()
|
D | PathOpsAngleIdeas.cpp | 53 int smallest = -1; in testArc() local 65 smallest = idx; in testArc() 69 REPORTER_ASSERT(reporter, smallest >= 0); in testArc() 71 return i[1][smallest]; in testArc()
|
D | SkpSkGrTest.cpp | 308 int smallest = SK_MaxS32; in addError() local 311 if (smallest > data->fError[index]) { in addError() 312 smallest = data->fError[index]; in addError()
|
/external/lz4/examples/ |
D | HCStreaming_ringBuffer.c | 149 size_t smallest = r0; in compare() local 150 if (r1<r0) smallest = r1; in compare() 151 result += smallest; in compare()
|
/external/lz4/lib/ |
D | lz4.c | 839 const BYTE* smallest = (const BYTE*) source; in LZ4_compress_continue_generic() local 841 if ((streamPtr->dictSize>0) && (smallest>dictEnd)) smallest = dictEnd; in LZ4_compress_continue_generic() 842 LZ4_renormDictT(streamPtr, smallest); in LZ4_compress_continue_generic() 901 const BYTE* smallest = dictEnd; in LZ4_compress_forceExtDict() local 902 if (smallest > (const BYTE*) source) smallest = (const BYTE*) source; in LZ4_compress_forceExtDict() 903 LZ4_renormDictT((LZ4_stream_t_internal*)LZ4_dict, smallest); in LZ4_compress_forceExtDict()
|
/external/llvm/test/CodeGen/AArch64/ |
D | setcc-takes-i32.ll | 8 ; It was expecting the smallest legal promotion of i1 to be the preferred SetCC
|
/external/bison/data/ |
D | java.m4 | 102 # Return the smallest int type able to handle numbers ranging from 111 # Return the smallest int type able to handle numbers ranging from
|
D | c.m4 | 155 # Return the smallest int type able to handle numbers ranging from 171 # Return the smallest int type able to handle numbers ranging from
|
/external/jemalloc/include/jemalloc/internal/ |
D | jemalloc_internal.h.in | 273 /* Return the smallest quantum multiple that is >= a. */ 280 /* Return the smallest long multiple that is >= a. */ 287 /* Return the smallest (void *) multiple that is >= a. */ 302 /* Return the smallest cacheline multiple that is >= s. */ 313 /* Return the smallest pagesize multiple that is >= s. */ 325 /* Return the smallest alignment multiple that is >= s. */ 684 * small size class, every object is aligned at the smallest
|
/external/llvm/test/CodeGen/SystemZ/ |
D | frame-08.ll | 109 ; Like f1 but with a frame that is 8 bytes bigger. This is the smallest 176 ; Like f2 but with a frame that is 8 bytes bigger. This is the smallest 245 ; This is the smallest frame size for which the preparatory increment for
|
D | frame-01.ll | 98 ; The smallest frame size that needs two instructions to both allocate
|
D | memcmp-01.ll | 174 ; Test the smallest size that needs 3 CLCs.
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.uniform_location.txt | 60 reported by the implementation or the smallest valid location (0) but are
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | Tree.as | 66 /** What is the smallest token index (indexing from 0) for this node
|
/external/libvorbis/doc/ |
D | 02-bitpacking.tex | 25 smallest integer storage representation offered by a platform. On 30 size that is a grouped multiple of this smallest size.
|
/external/mesa3d/src/mesa/program/ |
D | prog_execute.c | 1372 const float largest = 1.884467e+19, smallest = 5.42101e-20; in _mesa_execute_program() local 1391 else if (r < smallest) { in _mesa_execute_program() 1392 r = smallest; in _mesa_execute_program() 1399 else if (r > -smallest) { in _mesa_execute_program() 1400 r = -smallest; in _mesa_execute_program()
|
/external/llvm/docs/HistoricalNotes/ |
D | 2000-12-06-MeetingSummary.txt | 80 numbers are the smallest.
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_sad4d_sse2.asm | 252 ; so in high bit depth even the smallest width (4) needs 128bits i.e. XMM
|
/external/llvm/lib/Target/ARM/ |
D | README-Thumb.txt | 6 the smallest.
|
/external/zopfli/src/zopflipng/lodepng/ |
D | lodepng.cpp | 5284 size_t smallest = 0; in filter() local 5321 if(type == 0 || sum[type] < smallest) in filter() 5324 smallest = sum[type]; in filter() 5342 float smallest = 0; in filter() local 5368 if(type == 0 || sum[type] < smallest) in filter() 5371 smallest = sum[type]; in filter() 5403 size_t smallest = 0; in filter() local 5434 if(type == 0 || size[type] < smallest) in filter() 5437 smallest = size[type]; in filter()
|
/external/clang/docs/ |
D | ClangFormat.rst | 169 -p NUM strip the smallest prefix containing P slashes
|
/external/llvm/test/CodeGen/Mips/cconv/ |
D | return-struct.ll | 172 ; This will generate inlined memcpy's anyway so pick the smallest large
|
/external/llvm/docs/ |
D | HowToSubmitABug.rst | 75 preprocessed file down to the smallest amount of code that still replicates
|