HomeSort by relevance Sort by last modified time
    Searched refs:Uint (Results 1 - 25 of 39) sorted by null

1 2

  /external/dexmaker/src/dx/java/com/android/dx/util/
Uint.java 22 public final class Uint implements Comparable<Uint> {
25 public Uint(int value) {
29 public int compareTo(Uint uint) {
30 return Unsigned.compare(intValue, uint.intValue);
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplewriter/
simplewriter.cpp 22 writer.Uint(123);
28 writer.Uint(i);
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 23 bool Uint(unsigned u) { return out_.Uint(u); }
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 11 bool Uint(unsigned u) { cout << "Uint(" << u << ")" << endl; return true; }
  /external/vixl/src/vixl/a64/
logic-a64.cc 713 uint64_t ua = src1.Uint(vform, i);
714 uint64_t ub = src2.Uint(vform, i);
749 uint64_t ua = src1.Uint(vform, i);
750 uint64_t ub = src2.Uint(vform, i);
828 dst.SetUint(vform, i, src1.Uint(vform, i) * src2.Uint(vform, i));
    [all...]
simulator-a64.h 359 uint64_t Uint(VectorFormat vform, int index) const {
376 return Uint(vform, index) << (64 - LaneSizeInBitsFromFormat(vform));
410 uint64_t value = Uint(vform, index);
526 uint64_t val = Uint(vform, i);
    [all...]
  /external/v8/src/compiler/
machine-operator.h 338 V(Uint, Div) \
339 V(Uint, LessThan) \
340 V(Uint, Mod)
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
writertest.cpp 64 TEST(Writer, UInt) {
191 T(writer.Uint(0));
241 T(writer.Uint(0));
313 T(writer.Uint(0));
readertest.cpp 69 bool Uint(unsigned i) { actual_ = i; step_++; return true; }
706 bool Uint(unsigned i) { EXPECT_EQ(step_, i); step_++; return true; }
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 27 writer.Uint(age_);
  /prebuilts/misc/common/swig/include/2.0.11/java/
arrays_java.i 104 JAVA_ARRAYS_DECL(unsigned int, jlong, Long, Uint) /* unsigned int[] */
128 JAVA_ARRAYS_IMPL(unsigned int, jlong, Long, Uint) /* unsigned int[] */
185 JAVA_ARRAYS_TYPEMAPS(unsigned int, long, jlong, Uint, "[J") /* unsigned int[ANY] */
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 112 "uint", // OUTPUTTYPE_UINT,
298 inline GLValue::Uint getRandom (deRandom& rnd, GLValue::Uint min, GLValue::Uint max)
303 return GLValue::Uint::create((min == max ? min : min + (deRandom_getUint32(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
362 inline GLValue::Uint minValue (void)
364 return GLValue::Uint::create(4 * 16777216);
419 inline GLValue::Uint abs (GLValue::Uint val)
693 "uint", // OUTPUTTYPE_UINT
    [all...]
glsDrawTest.cpp 142 "uint", // OUTPUTTYPE_UINT,
434 typedef WrappedType<deUint32> Uint;
507 explicit GLValue (Uint value) : type(DrawTestSpec::INPUTTYPE_UNSIGNED_INT), ui(value) {}
528 Uint ui;
613 rangesHi[(int)DrawTestSpec::INPUTTYPE_UNSIGNED_INT] = GLValue(Uint::create(4294967295u));
631 rangesLo[(int)DrawTestSpec::INPUTTYPE_UNSIGNED_INT] = GLValue(Uint::create(0));
648 template<> struct GLValueTypeTraits<GLValue::Uint> { static const DrawTestSpec::InputType Type = DrawTestSpec::INPUTTYPE_UNSIGNED_INT; };
662 template<> GLValue::Uint inline extractGLValue<GLValue::Uint> (const GLValue& v) { return v.ui; };
753 inline GLValue::Uint getRandom (deRandom& rnd, GLValue::Uint min, GLValue::Uint max
    [all...]
glsVertexArrayTests.hpp 316 typedef WrappedType<deUint32> Uint;
393 explicit GLValue (Uint value) : type(Array::INPUTTYPE_UNSIGNED_INT), ui(value) {}
414 Uint ui;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 149 uint imm_count;
165 next_token(ctx, &imm->u[i].Uint);
281 uint prop_count;
tgsi_ureg.c 464 uint i = decl->nr_constant_ranges++;
637 uint i;
789 uint index;
790 uint i;
805 ureg->immediate[i].nr * sizeof(uint));
955 uint count = predicate ? 2 : 1;
    [all...]
tgsi_dump.c 46 uint instno;
49 uint indentation;
67 uint e,
69 uint enum_count )
191 uint writemask )
224 UID(data[i].Uint);
486 uint instno = ctx->instno++;
488 uint i;
624 uint instno )
649 uint flags
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 62 unsigned NrTokens : 8; /**< UINT */
116 unsigned NrTokens : 8; /**< UINT */
129 unsigned First : 16; /**< UINT */
130 unsigned Last : 16; /**< UINT */
135 unsigned Index2D:16; /**< UINT */
171 unsigned Index : 16; /**< UINT */
206 unsigned NrTokens : 14; /**< UINT */
214 unsigned Uint;
230 unsigned NrTokens : 8; /**< UINT */
457 unsigned NrTokens : 8; /* UINT */
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 68 bool Uint(unsigned u) { PrettyPrefix(kNumberType); return Base::WriteUint(u); }
writer.h 111 bool Uint(unsigned u) { Prefix(kNumberType); return WriteUint(u); }
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 29 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
234 "uint": [Scalar(x) for x in IN_USCALAR],
248 "int": ["float", "uint"],
249 "uint": ["float"],
260 "uint": ["vec2", "vec3", "vec4"]
265 "uint": ["uvec2", "uvec3", "uvec4"],
269 "uvec2": ["uint", "float"],
270 "uvec3": ["uint", "float"],
271 "uvec4": ["uint", "float"],
279 "int", "uint",
    [all...]
genutil.py 95 def toUint(lst): return [Uint(int(v.x)) for v in lst]
235 def toUint(self): return Uint(int(self.x))
316 class Uint(Scalar):
322 return "uint"
  /external/libchrome/base/test/
trace_event_analyzer.h 191 static Query Uint(uint32_t num);
  /external/deqp/modules/gles3/scripts/
genutil.py 95 def toUint(lst): return [Uint(int(v.x)) for v in lst]
235 def toUint(self): return Uint(int(self.x))
314 class Uint(Scalar):
320 return "uint"
gen-conversions.py 251 inUint = [Uint(x) for x in [0, 2, 3, 8, 9, 12, 10, 45, 193, 255]]

Completed in 280 milliseconds

1 2