Home
last modified time | relevance | path

Searched refs:inValue (Results 1 – 25 of 26) sorted by relevance

12

/external/libvncserver/libvncserver/
Dtabletrans24template.c102 uint32_t outValue,inValue; in rfbTranslateWithRGBTables24to24() local
109 inValue = ((*(uint32_t *)ip)>>shift)&0x00ffffff; in rfbTranslateWithRGBTables24to24()
110 outValue = (redTable[(inValue >> in->redShift) & in->redMax] | in rfbTranslateWithRGBTables24to24()
111 greenTable[(inValue >> in->greenShift) & in->greenMax] | in rfbTranslateWithRGBTables24to24()
112 blueTable[(inValue >> in->blueShift) & in->blueMax]); in rfbTranslateWithRGBTables24to24()
187 uint32_t inValue; in rfbTranslateWithRGBTables24toOUT() local
194 inValue = ((*(uint32_t *)ip)>>shift)&0x00ffffff; in rfbTranslateWithRGBTables24toOUT()
195 *(op++) = (redTable[(inValue >> in->redShift) & in->redMax] | in rfbTranslateWithRGBTables24toOUT()
196 greenTable[(inValue >> in->greenShift) & in->greenMax] | in rfbTranslateWithRGBTables24toOUT()
197 blueTable[(inValue >> in->blueShift) & in->blueMax]); in rfbTranslateWithRGBTables24toOUT()
/external/gptfdisk/
Dsupport.cc134 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) { in IeeeToInt() argument
147 while (inValue[0] == ' ') in IeeeToInt()
148 inValue.erase(0, 1); in IeeeToInt()
151 if ((inValue[0] == '+') || (inValue[0] == '-')) { in IeeeToInt()
152 plusFlag = inValue[0]; in IeeeToInt()
153 inValue.erase(0, 1); in IeeeToInt()
157 istringstream inString(inValue); in IeeeToInt()
164 if ((inValue.length() == 0) || (response == 0)) { in IeeeToInt()
/external/clang/test/SemaObjCXX/
Dstatic-cast.mm15 AutoreleaseObject& operator=(NSResponder* inValue);
16 AutoreleaseObject& operator=(const AutoreleaseObject& inValue);
18 AutoreleaseObject(const AutoreleaseObject& inValue);
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DInstructionEquivalence.java30 for (Value inValue : instruction.inValues()) { in doHash()
32 if (inValue.needsRegister()) { in doHash()
33 hash += allocator.getRegisterForValue(inValue, instruction.getNumber()); in doHash()
DBasicBlockInstructionsEquivalence.java73 for (Value inValue : instruction.inValues()) { in doHash()
75 if (inValue.needsRegister()) { in doHash()
76 hashPart += allocator.getRegisterForValue(inValue, instruction.getNumber()); in doHash()
DDeadCodeRemover.java58 for (Value inValue : instruction.inValues()) { in updateWorklist()
59 updateWorklist(worklist, inValue); in updateWorklist()
DCodeRewriter.java573 Instruction newInstance = staticPut.inValue().definition; in extractOrdinalsMapFor()
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DStaticPut.java24 public Value inValue() { in inValue() method in StaticPut
32 int src = builder.allocatedRegister(inValue(), getNumber()); in buildDex()
DInvoke.java87 for (Value inValue : inValues) { in requiredArgumentRegisters()
88 registers += inValue.requiredRegisters(); in requiredArgumentRegisters()
DInstruction.java34 protected Instruction(Value outValue, Value inValue) { in Instruction() argument
35 addInValue(inValue); in Instruction()
/external/deqp/modules/gles31/functional/
Des31fShaderIntegerFunctionTests.cpp746 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
759 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
882 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
884 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
931 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
933 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
991 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
993 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1069 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1071 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp893 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
906 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1050 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1052 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1110 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1112 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1174 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1176 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
1238 deUint32* inValue = (deUint32*)values[0]; in getInputValues() local
1240 generateRandomInputData(rnd, m_shaderType, type, precision, inValue, numValues); in getInputValues()
/external/deqp/modules/gles2/scripts/
Dgen-conversions.py194 def __init__(self, inValue, outValue): argument
195 inType = inValue.typeString()
198 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
/external/python/cpython2/Modules/expat/
Dxmltok_impl.c1434 enum { other, inName, inValue } state = inName; in PREFIX() enumerator
1460 if (state != inValue) { in PREFIX()
1463 state = inValue; in PREFIX()
1474 if (state != inValue) { in PREFIX()
1477 state = inValue; in PREFIX()
1494 else if (state == inValue in PREFIX()
1508 else if (state == inValue && nAtts < attsMax) in PREFIX()
1513 if (state != inValue) in PREFIX()
/external/expat/lib/
Dxmltok_impl.c1430 enum { other, inName, inValue } state = inName; in PREFIX() enumerator
1456 if (state != inValue) { in PREFIX()
1459 state = inValue; in PREFIX()
1470 if (state != inValue) { in PREFIX()
1473 state = inValue; in PREFIX()
1490 else if (state == inValue in PREFIX()
1504 else if (state == inValue && nAtts < attsMax) in PREFIX()
1509 if (state != inValue) in PREFIX()
/external/deqp/modules/gles3/scripts/
Dgen-conversions.py207 def __init__(self, inValue, outValue): argument
208 inType = inValue.typeString()
211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
/external/deqp/modules/gles2/functional/
Des2fShaderMatrixTests.cpp829 string& inValue = inNdx > 0 ? inValue1 : inValue0; in init() local
846 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in init()
859 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in init()
865 inValue = string("u_in") + de::toString(inNdx); in init()
888 inValue = string("in") + de::toString(inNdx); in init()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp1770 string& inValue = inNdx > 0 ? inValue1 : inValue0; in setupShader() local
1786 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in setupShader()
1800 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in setupShader()
1806 inValue = string("u_in") + de::toString(inNdx); in setupShader()
1835 inValue = string("in") + de::toString(inNdx); in setupShader()
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp1503 string& inValue = inNdx > 0 ? inValue1 : inValue0; in init() local
1520 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType); in init()
1533 inValue = m_isVertexCase ? "a_coords" : "v_coords"; in init()
1539 inValue = string("u_in") + de::toString(inNdx); in init()
1568 inValue = string("in") + de::toString(inNdx); in init()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DLensCodeRewriter.java156 new StaticPut(staticPut.getType(), staticPut.inValue(), actualField); in rewrite()
/external/python/cpython2/Mac/Modules/ctl/
D_Ctlmodule.c1619 SInt16 inValue; in CtlObj_SetBevelButtonMenuValue() local
1624 &inValue)) in CtlObj_SetBevelButtonMenuValue()
1627 inValue); in CtlObj_SetBevelButtonMenuValue()
1694 SInt16 inValue; in CtlObj_SetDisclosureTriangleLastValue() local
1699 &inValue)) in CtlObj_SetDisclosureTriangleLastValue()
1702 inValue); in CtlObj_SetDisclosureTriangleLastValue()
5211 SInt32 inValue; in Ctl_CreateDisclosureButtonControl() local
5220 &inValue, in Ctl_CreateDisclosureButtonControl()
5225 inValue, in Ctl_CreateDisclosureButtonControl()
/external/mdnsresponder/mDNSShared/
DDebugServices.c143 void * inValue,
1131 void * inValue, in DebugAssertOutputHandler() argument
1137 DEBUG_UNUSED( inValue ); in DebugAssertOutputHandler()
/external/clang/test/ARCMT/
Dobjcmt-arc-cf-annotations.m1556 - (NSDate*) rdar8356342:(NSDate *)inValue;
1560 - (NSDate*) rdar8356342:(NSDate*)inValue {
1561 NSDate *outValue = inValue;
1565 if (outValue != inValue)
Dobjcmt-arc-cf-annotations.m.result1598 - (NSDate*) rdar8356342:(NSDate *)inValue;
1602 - (NSDate*) rdar8356342:(NSDate*)inValue {
1603 NSDate *outValue = inValue;
1607 if (outValue != inValue)
/external/deqp/framework/randomshaders/
DrsgExpression.cpp1384 ExecConstValueAccess inValue = m_child->getValue(); in evaluate() local
1390 outValue.component(outElemNdx) = inValue.component(inElemNdx).value(); in evaluate()

12