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

1 2 3 4 5 6

  /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); }
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
InternalBootScriptLib.h 62 UINTN volatile Uint;
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 11 bool Uint(unsigned u) { cout << "Uint(" << u << ")" << endl; return true; }
  /prebuilts/go/darwin-x86/src/reflect/
tostring_test.go 27 case Uint, Uint8, Uint16, Uint32, Uint64, Uintptr:
28 return strconv.FormatUint(val.Uint(), 10)
  /prebuilts/go/linux-x86/src/reflect/
tostring_test.go 27 case Uint, Uint8, Uint16, Uint32, Uint64, Uintptr:
28 return strconv.FormatUint(val.Uint(), 10)
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
macho_combine_dwarf.go 272 if offset.Uint() < linkseg.Offset {
275 offset.SetUint(offset.Uint() + uint64(linkoffset))
285 nsect := iseg.FieldByName("Nsect").Uint()
299 if offsetField.Uint() != 0 {
300 offsetField.SetUint(offsetField.Uint() + delta)
302 if reloffField.Uint() != 0 {
303 reloffField.SetUint(reloffField.Uint() + delta)
334 offset.SetUint(offset.Uint() + delta)
349 fieldval := field.Uint()
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
macho_combine_dwarf.go 272 if offset.Uint() < linkseg.Offset {
275 offset.SetUint(offset.Uint() + uint64(linkoffset))
285 nsect := iseg.FieldByName("Nsect").Uint()
299 if offsetField.Uint() != 0 {
300 offsetField.SetUint(offsetField.Uint() + delta)
302 if reloffField.Uint() != 0 {
303 reloffField.SetUint(reloffField.Uint() + delta)
334 offset.SetUint(offset.Uint() + delta)
349 fieldval := field.Uint()
  /prebuilts/go/darwin-x86/doc/progs/
interface2.go 39 x = uint8(v.Uint()) // v.Uint returns a uint64.
  /prebuilts/go/linux-x86/doc/progs/
interface2.go 39 x = uint8(v.Uint()) // v.Uint returns a uint64.
  /external/vixl/src/aarch64/
logic-aarch64.cc 719 uint64_t ua = src1.Uint(vform, i);
720 uint64_t ub = src2.Uint(vform, i);
771 uint64_t ua = src1.Uint(vform, i);
772 uint64_t ub = src2.Uint(vform, i);
850 dst.SetUint(vform, i, src1.Uint(vform, i) * src2.Uint(vform, i));
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/driver/
types.go 88 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
89 uv := sv.Uint()
116 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
117 u64 := rv.Uint()
260 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32:
261 return int64(rv.Uint()), nil
263 u64 := rv.Uint()
  /prebuilts/go/linux-x86/src/database/sql/driver/
types.go 88 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
89 uv := sv.Uint()
116 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
117 u64 := rv.Uint()
260 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32:
261 return int64(rv.Uint()), nil
263 u64 := rv.Uint()
  /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));
  /prebuilts/go/darwin-x86/src/database/sql/
convert.go 213 reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
291 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
342 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
343 return strconv.FormatUint(rv.Uint(), 10)
358 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
359 return strconv.AppendUint(buf, rv.Uint(), 10), true
  /prebuilts/go/linux-x86/src/database/sql/
convert.go 213 reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
291 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
342 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
343 return strconv.FormatUint(rv.Uint(), 10)
358 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
359 return strconv.AppendUint(buf, rv.Uint(), 10), true
  /prebuilts/go/darwin-x86/src/text/template/
funcs.go 170 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
171 x = int64(index.Uint())
341 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
374 truth = v1.Int() >= 0 && uint64(v1.Int()) == v2.Uint()
376 truth = v2.Int() >= 0 && v1.Uint() == uint64(v2.Int())
393 truth = v1.Uint() == v2.Uint()
429 truth = v1.Int() < 0 || uint64(v1.Int()) < v2.Uint()
431 truth = v2.Int() >= 0 && v1.Uint() < uint64(v2.Int())
446 truth = v1.Uint() < v2.Uint(
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
funcs.go 170 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
171 x = int64(index.Uint())
341 case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
374 truth = v1.Int() >= 0 && uint64(v1.Int()) == v2.Uint()
376 truth = v2.Int() >= 0 && v1.Uint() == uint64(v2.Int())
393 truth = v1.Uint() == v2.Uint()
429 truth = v1.Int() < 0 || uint64(v1.Int()) < v2.Uint()
431 truth = v2.Int() >= 0 && v1.Uint() < uint64(v2.Int())
446 truth = v1.Uint() < v2.Uint(
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 27 writer.Uint(age_);
  /prebuilts/go/darwin-x86/src/cmd/vet/
shift.go 47 // like ^uint(0) >> 63 for 32/64 bit detection and compatibility.
77 case types.Int, types.Uint, types.Uintptr:
  /prebuilts/go/linux-x86/src/cmd/vet/
shift.go 47 // like ^uint(0) >> 63 for 32/64 bit detection and compatibility.
77 case types.Int, types.Uint, types.Uintptr:
  /build/blueprint/proptools/
clone.go 49 case reflect.Bool, reflect.String, reflect.Int, reflect.Uint:
144 case reflect.Bool, reflect.String, reflect.Slice, reflect.Int, reflect.Uint:
204 case reflect.Bool, reflect.String, reflect.Slice, reflect.Int, reflect.Uint:
  /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...]

Completed in 483 milliseconds

1 2 3 4 5 6