Lines Matching refs:fChannels
1400 memcpy(out, fChannels, sizeof(fChannels)); in getVectorLValue()
1610 out[i] = LLVMBuildLoad(builder, fChannels[i], "variable reference"); in compileVectorVariableReference()
1666 fChannels[0] = LLVMBuildAlloca(builder, fFloat32VectorType, "rVec"); in compileStageFunctionVector()
1667 LLVMBuildStore(builder, params.get()[4], fChannels[0]); in compileStageFunctionVector()
1668 fChannels[1] = LLVMBuildAlloca(builder, fFloat32VectorType, "gVec"); in compileStageFunctionVector()
1669 LLVMBuildStore(builder, params.get()[5], fChannels[1]); in compileStageFunctionVector()
1670 fChannels[2] = LLVMBuildAlloca(builder, fFloat32VectorType, "bVec"); in compileStageFunctionVector()
1671 LLVMBuildStore(builder, params.get()[6], fChannels[2]); in compileStageFunctionVector()
1672 fChannels[3] = LLVMBuildAlloca(builder, fFloat32VectorType, "aVec"); in compileStageFunctionVector()
1673 LLVMBuildStore(builder, params.get()[7], fChannels[3]); in compileStageFunctionVector()
1698 LLVMBuildLoad(builder, fChannels[0], "rVec"), in compileStageFunctionVector()
1699 LLVMBuildLoad(builder, fChannels[1], "gVec"), in compileStageFunctionVector()
1700 LLVMBuildLoad(builder, fChannels[2], "bVec"), in compileStageFunctionVector()
1701 LLVMBuildLoad(builder, fChannels[3], "aVec"), in compileStageFunctionVector()