HomeSort by relevance Sort by last modified time
    Searched refs:inValue (Results 1 - 21 of 21) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestClz.rs 23 char __attribute__((kernel)) testClzCharChar(char inValue) {
24 return clz(inValue);
27 char2 __attribute__((kernel)) testClzChar2Char2(char2 inValue) {
28 return clz(inValue);
31 char3 __attribute__((kernel)) testClzChar3Char3(char3 inValue) {
32 return clz(inValue);
35 char4 __attribute__((kernel)) testClzChar4Char4(char4 inValue) {
36 return clz(inValue);
39 uchar __attribute__((kernel)) testClzUcharUchar(uchar inValue) {
40 return clz(inValue);
    [all...]
TestClamp.rs 25 float __attribute__((kernel)) testClampFloatFloatFloatFloat(float inValue, unsigned int x) {
28 return clamp(inValue, inMinValue, inMaxValue);
31 float2 __attribute__((kernel)) testClampFloat2Float2Float2Float2(float2 inValue, unsigned int x) {
34 return clamp(inValue, inMinValue, inMaxValue);
37 float3 __attribute__((kernel)) testClampFloat3Float3Float3Float3(float3 inValue, unsigned int x) {
40 return clamp(inValue, inMinValue, inMaxValue);
43 float4 __attribute__((kernel)) testClampFloat4Float4Float4Float4(float4 inValue, unsigned int x) {
46 return clamp(inValue, inMinValue, inMaxValue);
49 float2 __attribute__((kernel)) testClampFloat2FloatFloatFloat2(float2 inValue, unsigned int x) {
52 return clamp(inValue, inMinValue, inMaxValue)
    [all...]
TestClz.java 40 public byte inValue;
45 Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 1, 0x2f7765afl, false);
48 script.forEach_testClzCharChar(inValue, out);
49 verifyResultsClzCharChar(inValue, out, false);
55 scriptRelaxed.forEach_testClzCharChar(inValue, out);
56 verifyResultsClzCharChar(inValue, out, true);
62 private void verifyResultsClzCharChar(Allocation inValue, Allocation out, boolean relaxed) {
65 inValue.copyTo(arrayInValue);
75 args.inValue = arrayInValue[i];
86 message.append("Input inValue: ")
    [all...]
TestClamp.java 40 public float inValue;
47 Allocation inValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xc83c447dl, false);
55 script.forEach_testClampFloatFloatFloatFloat(inValue, out);
56 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, false);
64 scriptRelaxed.forEach_testClampFloatFloatFloatFloat(inValue, out);
65 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, true);
71 private void verifyResultsClampFloatFloatFloatFloat(Allocation inValue, Allocation inMinValue, Allocation inMaxValue, Allocation out, boolean relaxed) {
74 inValue.copyTo(arrayInValue);
90 args.inValue = arrayInValue[i];
104 message.append("Input inValue: ")
    [all...]
  /external/libvncserver/libvncserver/
tabletrans24template.c 102 uint32_t outValue,inValue;
109 inValue = ((*(uint32_t *)ip)>>shift)&0x00ffffff;
110 outValue = (redTable[(inValue >> in->redShift) & in->redMax] |
111 greenTable[(inValue >> in->greenShift) & in->greenMax] |
112 blueTable[(inValue >> in->blueShift) & in->blueMax]);
187 uint32_t inValue;
194 inValue = ((*(uint32_t *)ip)>>shift)&0x00ffffff;
195 *(op++) = (redTable[(inValue >> in->redShift) & in->redMax] |
196 greenTable[(inValue >> in->greenShift) & in->greenMax] |
197 blueTable[(inValue >> in->blueShift) & in->blueMax])
    [all...]
  /external/gptfdisk/
support.cc 121 // Returns final sector value. In case inValue is invalid, returns 0 (a
123 // inValue works out to something outside the range low-high, returns the
132 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) {
145 while (inValue[0] == ' ')
146 inValue.erase(0, 1);
149 if ((inValue[0] == '+') || (inValue[0] == '-')) {
150 plusFlag = inValue[0];
151 inValue.erase(0, 1);
155 istringstream inString(inValue);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/animation/
FallbackLUTInterpolator.java 52 float inValue = i / lastFrame;
53 values[i] = interpolator.getInterpolation(inValue);
  /external/deqp/modules/gles2/scripts/
gen-conversions.py 172 def __init__(self, inValue, outValue):
173 inType = inValue.typeString()
176 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 746 deUint32* inValue = (deUint32*)values[0];
759 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues);
882 deUint32* inValue = (deUint32*)values[0];
884 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues);
    [all...]
  /external/deqp/modules/gles3/scripts/
gen-conversions.py 185 def __init__(self, inValue, outValue):
186 inType = inValue.typeString()
189 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
  /external/expat/lib/
xmltok_impl.c     [all...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 631 private static String zeroPad(int inValue, int inMinDigits) {
632 return String.format(Locale.getDefault(), "%0" + inMinDigits + "d", inValue);
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 829 string& inValue = inNdx > 0 ? inValue1 : inValue0;
846 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType);
859 inValue = m_isVertexCase ? "a_coords" : "v_coords";
865 inValue = string("u_in") + de::toString(inNdx);
888 inValue = string("in") + de::toString(inNdx);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 654 args.out = minI8(args.inMaxValue, maxI8(args.inValue, args.inMinValue));
658 args.out = minU8(args.inMaxValue, maxU8(args.inValue, args.inMinValue));
662 args.out = minI16(args.inMaxValue, maxI16(args.inValue, args.inMinValue));
666 args.out = minU16(args.inMaxValue, maxU16(args.inValue, args.inMinValue));
670 args.out = minI32(args.inMaxValue, maxI32(args.inValue, args.inMinValue));
674 args.out = minU32(args.inMaxValue, maxU32(args.inValue, args.inMinValue));
680 Math.max(args.inValue, args.inMinValue)));
684 args.out = minI64(args.inMaxValue, maxI64(args.inValue, args.inMinValue));
688 args.out = minU64(args.inMaxValue, maxU64(args.inValue, args.inMinValue));
692 int x = args.inValue;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /external/mdnsresponder/mDNSShared/
DebugServices.c 143 void * inValue,
1131 void * inValue,
1137 DEBUG_UNUSED( inValue );
    [all...]
  /external/deqp/framework/randomshaders/
rsgExpression.cpp     [all...]
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 

Completed in 999 milliseconds