Searched refs:CONST (Results 1 – 11 of 11) sorted by relevance
/frameworks/native/opengl/libagl/ |
D | fp.h | 41 GLfloat fixedToFloat(GLfixed) CONST; 44 float sinef(GLfloat x) CONST; 45 float cosinef(GLfloat x) CONST; 47 inline bool cmpf(GLfloat a, GLfloat b) CONST; 48 inline bool isZerof(GLfloat) CONST; 49 inline bool isOnef(GLfloat) CONST; 51 inline int isZeroOrNegativef(GLfloat) CONST; 53 inline int exponent(GLfloat) CONST; 54 inline int32_t mantissa(GLfloat) CONST; 55 inline GLfloat clampToZerof(GLfloat) CONST; [all …]
|
D | light.cpp | 112 static inline int32_t clampF(GLfixed f) CONST;
|
D | primitives.cpp | 382 static inline int32_t clampZ(GLfixed z) CONST;
|
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/ |
D | OperationSignatureUtils.h | 371 .type = RandomOperandType::CONST, \ 385 .type = RandomOperandType::CONST, \ 398 .type = RandomOperandType::CONST, \ 409 .type = RandomOperandType::CONST, \ 423 .type = RandomOperandType::CONST, \ 433 .type = RandomOperandType::CONST, \
|
D | Reshape.cpp | 261 .type = RandomOperandType::CONST, 321 .type = RandomOperandType::CONST,
|
/frameworks/ml/nn/runtime/test/fuzzing/ |
D | RandomGraphGenerator.cpp | 155 if (operand->type == RandomOperandType::CONST) return true; in asConstant() 200 operand->type = RandomOperandType::CONST; in generateValue() 243 case RandomOperandType::CONST: in convertToTestOperandLifeTime()
|
D | RandomGraphGenerator.h | 38 enum class RandomOperandType { INPUT = 0, OUTPUT = 1, INTERNAL = 2, CONST = 3, NO_VALUE = 4 }; enumerator
|
D | RandomVariable.cpp | 38 type(RandomVariableType::CONST), in RandomVariableBase() 91 if (type == RandomVariableType::CONST) return; in freeze() 93 type = RandomVariableType::CONST; in freeze() 98 case RandomVariableType::CONST: in getValue() 136 if (mVar->parent1->type == RandomVariableType::CONST) { in RandomVariable() 139 if (mVar->parent2 != nullptr && mVar->parent2->type == RandomVariableType::CONST) { in RandomVariable() 715 case RandomVariableType::CONST: in toString()
|
D | RandomVariable.h | 91 enum class RandomVariableType { FREE = 0, CONST = 1, OP = 2 }; enumerator
|
D | RandomGraphGeneratorUtils.h | 232 case RandomVariableType::CONST:
|
/frameworks/ml/nn/runtime/test/ |
D | TestUnspecifiedDimensions.cpp | 85 enum class OptionalType { CONST, INPUT }; // omitted operand op3 is an input or const enumerator 302 if (mOptionalType == OptionalType::CONST) { in TestOne() 308 if (mOptionalType == OptionalType::CONST) { in TestOne() 543 OptionalType mOptionalType = OptionalType::CONST;
|