HomeSort by relevance Sort by last modified time
    Searched full:instart (Results 1 - 23 of 23) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMix.rs 25 float __attribute__((kernel)) testMixFloatFloatFloatFloat(float inStart, unsigned int x) {
28 return mix(inStart, inStop, inAmount);
31 float2 __attribute__((kernel)) testMixFloat2Float2Float2Float2(float2 inStart, unsigned int x) {
34 return mix(inStart, inStop, inAmount);
37 float3 __attribute__((kernel)) testMixFloat3Float3Float3Float3(float3 inStart, unsigned int x) {
40 return mix(inStart, inStop, inAmount);
43 float4 __attribute__((kernel)) testMixFloat4Float4Float4Float4(float4 inStart, unsigned int x) {
46 return mix(inStart, inStop, inAmount);
49 float2 __attribute__((kernel)) testMixFloat2Float2FloatFloat2(float2 inStart, unsigned int x) {
52 return mix(inStart, inStop, inAmount)
    [all...]
TestMix.java 38 public float inStart;
45 Allocation inStart = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x9f4beff6471d6db1l, false);
52 script.forEach_testMixFloatFloatFloatFloat(inStart, out);
53 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, false);
61 scriptRelaxed.forEach_testMixFloatFloatFloatFloat(inStart, out);
62 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, true);
68 private void verifyResultsMixFloatFloatFloatFloat(Allocation inStart, Allocation inStop, Allocation inAmount, Allocation out, boolean relaxed) {
70 inStart.copyTo(arrayInStart);
81 args.inStart = arrayInStart[i];
94 message.append("Input inStart: ")
    [all...]
CoreMathVerifier.java     [all...]
  /external/zopfli/src/zopfli/
squeeze.h 38 If instart is larger than 0, it uses values before instart as starting
42 const unsigned char* in, size_t instart, size_t inend,
52 If instart is larger than 0, it uses values before instart as starting
57 size_t instart, size_t inend,
squeeze.c 200 instart: where to start
204 length_array: output array of size (inend - instart) which will receive the best
210 size_t instart, size_t inend,
214 size_t blocksize = inend - instart;
220 size_t windowstart = instart > ZOPFLI_WINDOW_SIZE
221 ? instart - ZOPFLI_WINDOW_SIZE : 0;
227 if (instart == inend) return 0;
234 for (i = windowstart; i < instart; i++) {
242 for (i = instart; i < inend; i++) {
243 size_t j = i - instart; /* Index in the costs array and length_array. *
    [all...]
blocksplitter.h 56 instart: where to start splitting
65 const unsigned char* in, size_t instart, size_t inend,
73 size_t instart, size_t inend,
deflate.c 588 size_t instart, size_t inend,
592 size_t blocksize = inend - instart;
599 s.blockstart = instart;
606 ZopfliLZ77Optimal(&s, in, instart, inend, &store);
614 ZopfliLZ77OptimalFixed(&s, in, instart, inend, &fixedstore);
641 size_t instart, size_t inend,
645 size_t blocksize = inend - instart;
651 s.blockstart = instart;
658 ZopfliLZ77OptimalFixed(&s, in, instart, inend, &store);
671 const unsigned char* in, size_t instart,
    [all...]
blocksplitter.c 285 const unsigned char* in, size_t instart, size_t inend,
297 s.blockstart = instart;
308 ZopfliLZ77Greedy(&s, in, instart, inend, &store);
315 pos = instart;
333 size_t instart, size_t inend,
336 size_t i = instart;
deflate.h 62 Like ZopfliDeflate, but allows to specify start and end byte with instart and
67 const unsigned char* in, size_t instart, size_t inend,
lz77.h 122 If instart is larger than 0, it uses values before instart as starting
126 size_t instart, size_t inend,
lz77.c 367 size_t instart, size_t inend,
373 size_t windowstart = instart > ZOPFLI_WINDOW_SIZE
374 ? instart - ZOPFLI_WINDOW_SIZE : 0;
388 if (instart == inend) return;
392 for (i = windowstart; i < instart; i++) {
396 for (i = instart; i < inend; i++) {
  /external/icu/icu4c/source/layout/
HangulLayoutEngine.cpp 244 le_int32 inStart = i;
292 le_int32 inLength = i - inStart;
319 glyphStorage.setCharIndex(outCharCount, inStart-offset, success);
325 for(le_int32 d = inStart + 1; d < i; d += 1) {
  /external/chromium_org/third_party/libxml/src/
encoding.c 221 const unsigned char* instart = in; local
243 *inlen = processed - instart;
251 *inlen = processed - instart;
274 *inlen = processed - instart;
280 *inlen = processed - instart;
394 const unsigned char* instart = in; local
416 *inlen = processed - instart;
424 *inlen = processed - instart;
437 *inlen = processed - instart;
452 *inlen = processed - instart;
571 const unsigned char *const instart = in; local
813 const unsigned char *const instart = in; local
2525 const unsigned char* instart = in; local
2639 const unsigned char* instart = in; local
    [all...]
HTMLparser.c 1951 const unsigned char* instart = in; local
2055 const unsigned char* instart = in; local
    [all...]
  /external/libxml2/
encoding.c 225 const unsigned char* instart = in; local
247 *inlen = processed - instart;
255 *inlen = processed - instart;
278 *inlen = processed - instart;
284 *inlen = processed - instart;
398 const unsigned char* instart = in; local
420 *inlen = processed - instart;
428 *inlen = processed - instart;
441 *inlen = processed - instart;
456 *inlen = processed - instart;
575 const unsigned char *const instart = in; local
817 const unsigned char *const instart = in; local
3024 const unsigned char* instart = in; local
3140 const unsigned char* instart = in; local
    [all...]
HTMLparser.c 1991 const unsigned char* instart = in; local
2095 const unsigned char* instart = in; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java 10 public void inStart(Start node)
33 inStart(node);
    [all...]
ReversedDepthFirstAdapter.java 10 public void inStart(Start node)
33 inStart(node);
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp     [all...]
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
org.eclipse.jdt.core-3.9.1.v20130905-0837.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 

Completed in 347 milliseconds