Home
last modified time | relevance | path

Searched refs:CONST (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/opengl/libagl/
Dfp.h41 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 …]
Dlight.cpp112 static inline int32_t clampF(GLfixed f) CONST;
Dprimitives.cpp382 static inline int32_t clampZ(GLfixed z) CONST;
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/
DOperationSignatureUtils.h371 .type = RandomOperandType::CONST, \
385 .type = RandomOperandType::CONST, \
398 .type = RandomOperandType::CONST, \
409 .type = RandomOperandType::CONST, \
423 .type = RandomOperandType::CONST, \
433 .type = RandomOperandType::CONST, \
DReshape.cpp261 .type = RandomOperandType::CONST,
321 .type = RandomOperandType::CONST,
/frameworks/ml/nn/runtime/test/fuzzing/
DRandomGraphGenerator.cpp155 if (operand->type == RandomOperandType::CONST) return true; in asConstant()
200 operand->type = RandomOperandType::CONST; in generateValue()
243 case RandomOperandType::CONST: in convertToTestOperandLifeTime()
DRandomGraphGenerator.h38 enum class RandomOperandType { INPUT = 0, OUTPUT = 1, INTERNAL = 2, CONST = 3, NO_VALUE = 4 }; enumerator
DRandomVariable.cpp38 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()
DRandomVariable.h91 enum class RandomVariableType { FREE = 0, CONST = 1, OP = 2 }; enumerator
DRandomGraphGeneratorUtils.h232 case RandomVariableType::CONST:
/frameworks/ml/nn/runtime/test/
DTestUnspecifiedDimensions.cpp85 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;