Home
last modified time | relevance | path

Searched refs:FLOATING_POINT (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/script_api/
DSpecification.cpp38 {"f16", "FLOAT_16", "half", "short", FLOATING_POINT, 11, 5},
39 {"f32", "FLOAT_32", "float", "float", FLOATING_POINT, 24, 8},
40 {"f64", "FLOAT_64", "double", "double", FLOATING_POINT, 53, 11},
221 if (typeIndex < 0 || TYPES[typeIndex].kind != FLOATING_POINT) { in parseParameterDefinition()
DGenerateTestFiles.cpp325 if (TYPES[param.typeIndex].kind == FLOATING_POINT) { in writeJavaInputAllocationDefinition()
356 case FLOATING_POINT: { in writeJavaRandomCompatibleFloatAllocation()
386 if (compatibleType.kind == FLOATING_POINT) { in writeJavaRandomCompatibleIntegerAllocation()
DSpecification.h41 enum NumberKind { SIGNED_INTEGER, UNSIGNED_INTEGER, FLOATING_POINT }; enumerator