Home
last modified time | relevance | path

Searched refs:fInt1Type (Results 1 – 2 of 2) sorted by relevance

/external/skqp/src/sksl/
DSkSLJIT.cpp102 fInt1Type = LLVMInt1TypeInContext(fContext); in JIT()
103 fInt1VectorType = LLVMVectorType(fInt1Type, fVectorCount); in JIT()
104 fInt1Vector2Type = LLVMVectorType(fInt1Type, 2); in JIT()
105 fInt1Vector3Type = LLVMVectorType(fInt1Type, 3); in JIT()
106 fInt1Vector4Type = LLVMVectorType(fInt1Type, 4); in JIT()
249 return fInt1Type; in getType()
704 LLVMValueRef phi = LLVMBuildPhi(builder, fInt1Type, "&&"); in compileBinary()
705 LLVMValueRef incomingValues[2] = { right, LLVMConstInt(fInt1Type, 0, false) }; in compileBinary()
722 LLVMValueRef phi = LLVMBuildPhi(builder, fInt1Type, "||"); in compileBinary()
723 LLVMValueRef incomingValues[2] = { right, LLVMConstInt(fInt1Type, 1, false) }; in compileBinary()
[all …]
DSkSLJIT.h308 LLVMTypeRef fInt1Type; variable