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

  /external/clang/test/Preprocessor/
macro_fn_varargs_iso.c 6 #define va1(...) foo{a, __VA_ARGS__, e} macro
7 va1(b, c, d)
  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 29 uint32x2_t va0, va1; local
37 va1 = vdup_n_u32(a10); // duplicate a10
39 va1 = vset_lane_u32(a11, va1, 1); // set top to a11
42 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] * y
64 uint32x2_t va0, va1; local
72 va1 = vdup_n_u32(a10); // duplicate a10
74 va1 = vset_lane_u32(a11, va1, 1); // set top to a11
77 tmp2 = vmull_u8(vreinterpret_u8_u32(va1), vy); // tmp2 = [a11|a10] *
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
VertexAttributes.java 176 final VertexAttribute va1 = o.attributes[i]; local
177 if (va0.usage != va1.usage) return va0.usage - va1.usage;
178 if (va0.unit != va1.unit) return va0.unit - va1.unit;
179 if (va0.numComponents != va1.numComponents) return va0.numComponents - va1.numComponents;
180 if (va0.normalized != va1.normalized) return va0.normalized ? 1 : -1;
181 if (va0.type != va1.type) return va0.type - va1.type;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
ModelCache.java 152 final VertexAttributes va1 = arg1.meshPart.mesh.getVertexAttributes(); local
153 final int vc = va0.compareTo(va1);

Completed in 547 milliseconds