/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestMix.rs | 26 float inStop = rsGetElementAt_float(gAllocInStop, x); 28 return mix(inStart, inStop, inAmount); 32 float2 inStop = rsGetElementAt_float2(gAllocInStop, x); 34 return mix(inStart, inStop, inAmount); 38 float3 inStop = rsGetElementAt_float3(gAllocInStop, x); 40 return mix(inStart, inStop, inAmount); 44 float4 inStop = rsGetElementAt_float4(gAllocInStop, x); 46 return mix(inStart, inStop, inAmount); 50 float2 inStop = rsGetElementAt_float2(gAllocInStop, x); 52 return mix(inStart, inStop, inAmount) [all...] |
TestMix.java | 39 public float inStop; 46 Allocation inStop = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x6ede0b88b4422e8fl, false); 50 script.set_gAllocInStop(inStop); 53 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, false); 59 scriptRelaxed.set_gAllocInStop(inStop); 62 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, true); 68 private void verifyResultsMixFloatFloatFloatFloat(Allocation inStart, Allocation inStop, Allocation inAmount, Allocation out, boolean relaxed) { 72 inStop.copyTo(arrayInStop); 82 args.inStop = arrayInStop[i]; 98 message.append("Input inStop: ") [all...] |
CoreMathVerifier.java | [all...] |
/external/chromium_org/third_party/re2/re2/ |
prog.h | 50 enum InstOp { 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } 129 void set_opcode(InstOp opcode) { 137 void set_out_opcode(int out, InstOp opcode) {
|
/external/regex-re2/re2/ |
prog.h | 50 enum InstOp { 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } 129 void set_opcode(InstOp opcode) { 137 void set_out_opcode(int out, InstOp opcode) {
|
/external/chromium_org/third_party/libxml/src/ |
encoding.c | 306 const unsigned char* instop; local 313 instop = inend; 321 if (instop - in > outend - out) instop = in + (outend - out); 322 while (in < instop && *in < 0x80) { 2641 const unsigned char* instop; local [all...] |
/external/libxml2/ |
encoding.c | 310 const unsigned char* instop; local 317 instop = inend; 325 if ((instop - in) > (outend - out)) instop = in + (outend - out); 326 while ((in < instop) && (*in < 0x80)) { 3142 const unsigned char* instop; local [all...] |