Searched refs:genIType (Results 1 – 5 of 5) sorted by relevance
/external/skqp/src/sksl/ |
D | sksl.inc | 29 $genIType abs($genIType x); 32 $genIType sign($genIType x); 56 $genIType min($genIType x, $genIType y); 57 $genIType min($genIType x, int y); 64 $genIType max($genIType x, $genIType y); 65 $genIType max($genIType x, int y); 72 $genIType clamp($genIType x, $genIType minVal, $genIType maxVal); 73 $genIType clamp($genIType x, int minVal, int maxVal); 83 $genIType mix($genIType x, $genIType y, $genBType a); 98 $genIType floatBitsToInt($genType value); [all …]
|
/external/skia/src/sksl/ |
D | sksl.inc | 50 $genIType abs($genIType x); 54 $genIType sign($genIType x); 89 $genIType min($genIType x, $genIType y); 90 $genIType min($genIType x, int y); 99 $genIType max($genIType x, $genIType y); 100 $genIType max($genIType x, int y); 109 $genIType clamp($genIType x, $genIType minVal, $genIType maxVal); 110 $genIType clamp($genIType x, int minVal, int maxVal); 123 $genIType mix($genIType x, $genIType y, $genBType a); 142 $genIType floatBitsToInt($genType value); [all …]
|
/external/swiftshader/src/OpenGL/compiler/ |
D | Initialize.cpp | 37 TType *genIType = new TType(EbtGenIType); in InsertBuiltInFunctions() local 75 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpAbs, genIType, "abs", genIType); in InsertBuiltInFunctions() 77 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpSign, genIType, "sign", genIType); in InsertBuiltInFunctions() 88 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMin, genIType, "min", genIType, genIType); in InsertBuiltInFunctions() 89 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMin, genIType, "min", genIType, int1); in InsertBuiltInFunctions() 94 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMax, genIType, "max", genIType, genIType); in InsertBuiltInFunctions() 95 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpMax, genIType, "max", genIType, int1); in InsertBuiltInFunctions() 100 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpClamp, genIType, "clamp", genIType, int1, int1); in InsertBuiltInFunctions() 101 …symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpClamp, genIType, "clamp", genIType, genIType, genITyp… in InsertBuiltInFunctions() 124 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpFloatBitsToInt, genIType, "floatBitsToInt", genType); in InsertBuiltInFunctions() [all …]
|
/external/mesa3d/docs/specs/ |
D | MESA_shader_integer_functions.txt | 281 genType frexp(genType x, out genIType exp); 282 genType ldexp(genType x, in genIType exp); 317 genIType bitfieldExtract(genIType value, int offset, int bits); 320 genIType bitfieldInsert(genIType base, genIType insert, int offset, 325 genIType bitfieldReverse(genIType value); 328 genIType bitCount(genIType value); 329 genIType bitCount(genUType value); 331 genIType findLSB(genIType value); 332 genIType findLSB(genUType value); 334 genIType findMSB(genIType value); [all …]
|
D | EXT_shader_integer_mix.spec | 62 genIType mix(genIType x, Selects which vector each returned component comes 63 genIType y, from. For a component of a that is false, the
|