HomeSort by relevance Sort by last modified time
    Searched refs:Uint (Results 1 - 25 of 29) 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);
  /external/lldb/tools/debugserver/source/MacOSX/ppc/
DNBArchImpl.cpp 260 { "srr0" , Uint, 4, Hex },
261 { "srr1" , Uint, 4, Hex },
262 { "r0" , Uint, 4, Hex },
263 { "r1" , Uint, 4, Hex },
264 { "r2" , Uint, 4, Hex },
265 { "r3" , Uint, 4, Hex },
266 { "r4" , Uint, 4, Hex },
267 { "r5" , Uint, 4, Hex },
268 { "r6" , Uint, 4, Hex },
269 { "r7" , Uint, 4, Hex }
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/i386/
DNBArchImplI386.cpp     [all...]
  /external/vixl/src/vixl/a64/
logic-a64.cc 709 uint64_t ua = src1.Uint(vform, i);
710 uint64_t ub = src2.Uint(vform, i);
745 uint64_t ua = src1.Uint(vform, i);
746 uint64_t ub = src2.Uint(vform, i);
824 dst.SetUint(vform, i, src1.Uint(vform, i) * src2.Uint(vform, i));
    [all...]
simulator-a64.h 472 uint64_t Uint(VectorFormat vform, int index) const {
489 return Uint(vform, index) << (64 - LaneSizeInBitsFromFormat(vform));
524 case 8: Memory::Write<uint8_t>(addr, Uint(vform, index)); break;
525 case 16: Memory::Write<uint16_t>(addr, Uint(vform, index)); break;
526 case 32: Memory::Write<uint32_t>(addr, Uint(vform, index)); break;
527 case 64: Memory::Write<uint64_t>(addr, Uint(vform, index)); break;
638 uint64_t val = Uint(vform, i);
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.cpp     [all...]
  /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 281 typedef WrappedType<deUint32> Uint;
354 explicit GLValue (Uint value) : type(Array::INPUTTYPE_UNSIGNED_INT), ui(value) {}
375 Uint ui;
  /external/lldb/tools/debugserver/source/
DNBDefs.h 174 Uint, // unsigned integer
DNBRegisterInfo.cpp 77 case Uint:
84 default: snprintf(str, sizeof(str), "error: unsupported uint byte size %d.", info.size); break;
  /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...]
tgsi_text.c 144 static boolean parse_uint( const char **pcur, uint *val )
166 if (parse_uint(&cur, (uint *)val)) {
273 uint processor;
301 static boolean parse_label( struct translate_ctx *ctx, uint *val )
317 parse_file( const char **pcur, uint *file )
319 uint i;
336 uint *writemask )
382 uint *file )
397 /* <register_file_bracket_index> ::= <register_file_bracket> <uint>
402 uint *file
    [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...]
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.cpp     [all...]
  /external/deqp/modules/gles31/scripts/
gen-implicit-conversions.py 7 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
212 "uint": [Scalar(x) for x in IN_USCALAR],
226 "int": ["float", "uint"],
227 "uint": ["float"],
238 "uint": ["vec2", "vec3", "vec4"]
243 "uint": ["uvec2", "uvec3", "uvec4"],
247 "uvec2": ["uint", "float"],
248 "uvec3": ["uint", "float"],
249 "uvec4": ["uint", "float"],
257 "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/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 229 inUint = [Uint(x) for x in [0, 2, 3, 8, 9, 12, 10, 45, 193, 255]]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 36 static nv50_ir::operation translateOpcode(uint opcode);
37 static nv50_ir::DataFile translateFile(uint file);
38 static nv50_ir::TexTarget translateTexture(uint texTarg);
39 static nv50_ir::SVSemantic translateSysVal(uint sysval);
73 uint getFile() const { return reg.File; }
125 uint getFile() const { return reg.File; }
156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
196 inline uint getLabel() { return insn->Label.Label; }
298 static nv50_ir::DataFile translateFile(uint file)
319 static nv50_ir::SVSemantic translateSysVal(uint sysval
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 50 EXP_IEEE, LOG_IEEE/CLAMPED, RECIP_IEEE/CLAMPED/FF/INT/UINT/_64/CLAMPED_64
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 945 LLVMConstInt(bld_base->uint_bld.elem_type, imm->u[i].Uint, false );
    [all...]

Completed in 533 milliseconds

1 2