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

1 2

  /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 48 public byte inValue;
53 Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 1, 0xf6f3a15e2f7765afl, false);
56 script.forEach_testClzCharChar(inValue, out);
57 verifyResultsClzCharChar(inValue, out, false);
64 scriptRelaxed.forEach_testClzCharChar(inValue, out);
65 verifyResultsClzCharChar(inValue, out, true);
70 inValue.destroy();
73 private void verifyResultsClzCharChar(Allocation inValue, Allocation out, boolean relaxed) {
76 inValue.copyTo(arrayInValue);
86 args.inValue = arrayInValue[i]
    [all...]
TestClamp.java 48 public float inValue;
55 Allocation inValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7e886d7cc83c447dl, false);
63 script.forEach_testClampFloatFloatFloatFloat(inValue, out);
64 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, false);
73 scriptRelaxed.forEach_testClampFloatFloatFloatFloat(inValue, out);
74 verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue, inMaxValue, out, true);
79 inValue.destroy();
84 private void verifyResultsClampFloatFloatFloatFloat(Allocation inValue, Allocation inMinValue, Allocation inMaxValue, Allocation out, boolean relaxed) {
87 inValue.copyTo(arrayInValue);
103 args.inValue = arrayInValue[i]
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/include/
vk_struct_wrappers.h 50 void set_pUserData(void* inValue) { m_struct.pUserData = inValue; }
52 void set_pfnAllocation(PFN_vkAllocationFunction inValue) { m_struct.pfnAllocation = inValue; }
54 void set_pfnReallocation(PFN_vkReallocationFunction inValue) { m_struct.pfnReallocation = inValue; }
56 void set_pfnFree(PFN_vkFreeFunction inValue) { m_struct.pfnFree = inValue; }
58 void set_pfnInternalAllocation(PFN_vkInternalAllocationNotification inValue) { m_struct.pfnInternalAllocation = inValue; }
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
InstructionEquivalence.java 30 for (Value inValue : instruction.inValues()) {
32 if (inValue.needsRegister()) {
33 hash += allocator.getRegisterForValue(inValue, instruction.getNumber());
BasicBlockInstructionsEquivalence.java 73 for (Value inValue : instruction.inValues()) {
75 if (inValue.needsRegister()) {
76 hashPart += allocator.getRegisterForValue(inValue, instruction.getNumber());
DeadCodeRemover.java 58 for (Value inValue : instruction.inValues()) {
59 updateWorklist(worklist, inValue);
  /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 123 // Returns final sector value. In case inValue is invalid, returns 0 (a
125 // inValue works out to something outside the range low-high, returns the
134 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) {
147 while (inValue[0] == ' ')
148 inValue.erase(0, 1);
151 if ((inValue[0] == '+') || (inValue[0] == '-')) {
152 plusFlag = inValue[0];
153 inValue.erase(0, 1);
157 istringstream inString(inValue);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/animation/
FallbackLUTInterpolator.java 56 float inValue = i / lastFrame;
57 values[i] = interpolator.getInterpolation(inValue);
  /external/r8/src/main/java/com/android/tools/r8/ir/code/
StaticPut.java 24 public Value inValue() {
32 int src = builder.allocatedRegister(inValue(), getNumber());
Invoke.java 87 for (Value inValue : inValues) {
88 registers += inValue.requiredRegisters();
Instruction.java 34 protected Instruction(Value outValue, Value inValue) {
35 addInValue(inValue);
  /external/deqp/modules/gles2/scripts/
gen-conversions.py 194 def __init__(self, inValue, outValue):
195 inType = inValue.typeString()
198 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 893 deUint32* inValue = (deUint32*)values[0];
906 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues);
    [all...]
  /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 207 def __init__(self, inValue, outValue):
208 inType = inValue.typeString()
211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmltok_impl.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmltok_impl.c     [all...]
  /external/expat/lib/
xmltok_impl.c     [all...]
  /external/python/cpython2/Modules/expat/
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     [all...]

Completed in 862 milliseconds

1 2