Home
last modified time | relevance | path

Searched refs:genUType (Results 1 – 5 of 5) sorted by relevance

/external/skqp/src/sksl/
Dsksl.inc58 //$genUType min($genUType x, $genUType y);
59 //$genUType min($genUType x, uint y);
66 //$genUType max($genUType x, $genUType y);
67 //$genUType max($genUType x, uint y);
74 //$genUType clamp($genUType x, $genUType minVal, $genUType maxVal);
75 //$genUType clamp($genUType x, uint minVal, uint maxVal);
84 //$genUType mix($genUType x, $genUType y, $genBType a);
99 //$genUType floatBitsToUint($genType value);
101 $genType uintBitsTofloat($genUType value);
221 $genIType bitCount($genUType value);
[all …]
/external/skia/src/sksl/
Dsksl.inc91 //$genUType min($genUType x, $genUType y);
92 //$genUType min($genUType x, uint y);
101 //$genUType max($genUType x, $genUType y);
102 //$genUType max($genUType x, uint y);
111 //$genUType clamp($genUType x, $genUType minVal, $genUType maxVal);
112 //$genUType clamp($genUType x, uint minVal, uint maxVal);
124 //$genUType mix($genUType x, $genUType y, $genBType a);
143 //$genUType floatBitsToUint($genType value);
145 $genType uintBitsTofloat($genUType value);
289 $genIType bitCount($genUType value);
[all …]
/external/swiftshader/src/OpenGL/compiler/
DInitialize.cpp38 TType *genUType = new TType(EbtGenUType); in InsertBuiltInFunctions() local
90 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMin, genUType, "min", genUType, genUType); in InsertBuiltInFunctions()
91 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMin, genUType, "min", genUType, uint1); in InsertBuiltInFunctions()
96 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMax, genUType, "max", genUType, genUType); in InsertBuiltInFunctions()
97 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMax, genUType, "max", genUType, uint1); in InsertBuiltInFunctions()
102 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpClamp, genUType, "clamp", genUType, uint1, uint1); in InsertBuiltInFunctions()
103 …symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpClamp, genUType, "clamp", genUType, genUType, genUTyp… in InsertBuiltInFunctions()
125 …symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpFloatBitsToUint, genUType, "floatBitsToUint", genType… in InsertBuiltInFunctions()
127 …symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpUintBitsToFloat, genType, "uintBitsToFloat", genUType in InsertBuiltInFunctions()
/external/mesa3d/docs/specs/
DMESA_shader_integer_functions.txt318 genUType bitfieldExtract(genUType value, int offset, int bits);
322 genUType bitfieldInsert(genUType base, genUType insert, int offset,
326 genUType bitfieldReverse(genUType value);
329 genIType bitCount(genUType value);
332 genIType findLSB(genUType value);
335 genIType findMSB(genUType value);
383 genUType uaddCarry(genUType x, genUType y, out genUType carry);
384 genUType usubBorrow(genUType x, genUType y, out genUType borrow);
401 void umulExtended(genUType x, genUType y, out genUType msb,
402 out genUType lsb);
DEXT_shader_integer_mix.spec65 genUType mix(genUType x, component of a that is true, the corresponding
66 genUType y, component of y is returned.