HomeSort by relevance Sort by last modified time
    Searched defs:bvec (Results 1 - 8 of 8) sorted by null

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bv.go 13 // A bvec is a bit vector.
14 type bvec struct { type
19 func bvalloc(n int32) bvec {
21 return bvec{n, make([]uint32, nword)}
39 func (b *bulkBvec) next() bvec {
40 out := bvec{b.nbit, b.words[:b.nword]}
45 func (bv1 bvec) Eq(bv2 bvec) bool {
57 func (dst bvec) Copy(src bvec) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bv.go 13 // A bvec is a bit vector.
14 type bvec struct { type
19 func bvalloc(n int32) bvec {
21 return bvec{n, make([]uint32, nword)}
39 func (b *bulkBvec) next() bvec {
40 out := bvec{b.nbit, b.words[:b.nword]}
45 func (bv1 bvec) Eq(bv2 bvec) bool {
57 func (dst bvec) Copy(src bvec) {
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
Initialize.cpp 203 TType *bvec = new TType(EbtBVec); local
208 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThan, bvec, "lessThan", vec, vec);
209 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThan, bvec, "lessThan", ivec, ivec);
210 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpLessThan, bvec, "lessThan", uvec, uvec);
211 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThanEqual, bvec, "lessThanEqual", vec, vec);
212 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThanEqual, bvec, "lessThanEqual", ivec, ivec);
213 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpLessThanEqual, bvec, "lessThanEqual", uvec, uvec);
214 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThan, bvec, "greaterThan", vec, vec);
215 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThan, bvec, "greaterThan", ivec, ivec);
216 symbolTable.insertBuiltIn(ESSL3_BUILTINS, EOpGreaterThan, bvec, "greaterThan", uvec, uvec)
    [all...]
  /external/mesa3d/src/compiler/
glsl_types.cpp 510 glsl_type::bvec(unsigned components) function in class:glsl_type
544 return bvec(rows);
    [all...]
  /external/mesa3d/src/compiler/glsl/
lower_instructions.cpp 390 const glsl_type *bvec = glsl_type::get_instance(GLSL_TYPE_BOOL, vec_elem, 1); local
412 new(ir) ir_variable(bvec, "is_not_zero_or_underflow", ir_var_temporary);
491 const glsl_type *bvec = glsl_type::get_instance(GLSL_TYPE_BOOL, vec_elem, 1); local
515 new(ir) ir_variable(bvec, "is_not_zero_or_underflow", ir_var_temporary);
613 const glsl_type *bvec = glsl_type::get_instance(GLSL_TYPE_BOOL, vec_elem, 1); local
628 new(ir) ir_variable(bvec, "is_not_zero", ir_var_temporary);
685 const glsl_type *bvec = glsl_type::get_instance(GLSL_TYPE_BOOL, vec_elem, 1); local
700 new(ir) ir_variable(bvec, "is_not_zero", ir_var_temporary);
    [all...]
builtin_functions.cpp 5176 const glsl_type *bvec = glsl_type::get_instance(GLSL_TYPE_BOOL, vec_elem, 1); local
    [all...]
  /external/freetype/src/base/
ftstroke.c 1507 FT_Vector bvec, delta; local
1720 FT_Vector bvec, delta; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftstroke.c 1506 FT_Vector bvec, delta; local
1719 FT_Vector bvec, delta; local
    [all...]

Completed in 1082 milliseconds