HomeSort by relevance Sort by last modified time
    Searched full:uint64 (Results 651 - 675 of 2692) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/debug/dwarf/
typeunit.go 45 ao64 := b.uint64()
46 if ao64 != uint64(uint32(ao64)) {
57 sig := b.uint64()
63 to64 := b.uint64()
64 if to64 != uint64(uint32(to64)) {
93 func (d *Data) sigToType(sig uint64) (Type, error) {
  /prebuilts/go/darwin-x86/src/runtime/
os1_plan9.go 65 func getpid() uint64 {
76 return uint64(_atoi(c))
128 func itoa(buf []byte, val uint64) []byte {
156 func postnote(pid uint64, msg []byte) int {
183 status = append(itoa(tmp[:len(tmp)-1], uint64(e)), 0)
244 func memlimit() uint64 {
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
atomic_test.go 187 var s uint64
217 var s uint64
230 var a uint64
241 var a uint64
252 var a uint64
263 var a uint64
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/arm64/
reg.go 117 func excludedregs() uint64 {
119 regbits := uint64(RtoB(arm64.REGRT1) | RtoB(arm64.REGRT2) | RtoB(arm64.REGPR))
132 func doregbits(r int) uint64 {
148 func RtoB(r int) uint64 {
158 func BtoR(b uint64) int {
166 func BtoF(b uint64) int {
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/ppc64/
reg.go 115 func excludedregs() uint64 {
117 regbits := uint64(1<<0 | RtoB(ppc64.REGSP) | RtoB(ppc64.REGG) | RtoB(ppc64.REGTLS))
125 func doregbits(r int) uint64 {
141 func RtoB(r int) uint64 {
151 func BtoR(b uint64) int {
159 func BtoF(b uint64) int {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/arm64/
reg.go 114 func excludedregs() uint64 {
116 regbits := uint64(RtoB(arm64.REGRT1) | RtoB(arm64.REGRT2) | RtoB(arm64.REGPR))
129 func doregbits(r int) uint64 {
145 func RtoB(r int) uint64 {
155 func BtoR(b uint64) int {
163 func BtoF(b uint64) int {
  /prebuilts/go/linux-x86/src/cmd/trace/
pprof.go 29 n uint64
40 prof := make(map[uint64]Record)
61 prof := make(map[uint64]Record)
88 prof := make(map[uint64]Record)
110 prof := make(map[uint64]Record)
126 func serveSVGProfile(w http.ResponseWriter, r *http.Request, prof map[uint64]Record) {
  /prebuilts/go/linux-x86/src/debug/dwarf/
typeunit.go 45 ao64 := b.uint64()
46 if ao64 != uint64(uint32(ao64)) {
57 sig := b.uint64()
63 to64 := b.uint64()
64 if to64 != uint64(uint32(to64)) {
93 func (d *Data) sigToType(sig uint64) (Type, error) {
  /prebuilts/go/linux-x86/src/runtime/
os1_plan9.go 65 func getpid() uint64 {
76 return uint64(_atoi(c))
128 func itoa(buf []byte, val uint64) []byte {
156 func postnote(pid uint64, msg []byte) int {
183 status = append(itoa(tmp[:len(tmp)-1], uint64(e)), 0)
244 func memlimit() uint64 {
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
atomic_test.go 187 var s uint64
217 var s uint64
230 var a uint64
241 var a uint64
252 var a uint64
263 var a uint64
  /external/libyuv/files/source/
compare.cc 220 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed) {
229 while (count >= static_cast<uint64>(kBlockSize)) {
352 uint64 ComputeSumSquareError(const uint8* src_a, const uint8* src_b,
370 uint64 sse = 0;
393 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a,
410 uint64 sse = 0;
421 double SumSquareErrorToPsnr(uint64 sse, uint64 count) {
440 const uint64 samples = width * height;
441 const uint64 sse = ComputeSumSquareErrorPlane(src_a, stride_a
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtc/
packing.inl 285 GLM_FUNC_QUALIFIER uint64 packUnorm4x16(vec4 const & v)
288 uint64* Packed = reinterpret_cast<uint64*>(&Topack);
292 GLM_FUNC_QUALIFIER vec4 unpackUnorm4x16(uint64 const & p)
294 u16vec4* Unpack = reinterpret_cast<u16vec4*>(const_cast<uint64*>(&p));
313 GLM_FUNC_QUALIFIER uint64 packSnorm4x16(vec4 const & v)
316 uint64* Packed = reinterpret_cast<uint64*>(&Topack);
320 GLM_FUNC_QUALIFIER vec4 unpackSnorm4x16(uint64 const & p)
322 i16vec4* Unpack(reinterpret_cast<i16vec4*>(const_cast<uint64*>(&p)))
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/cipher/
gcm.go 49 low, high uint64
225 z.low ^= uint64(gcmReductionTable[msw]) << 48
327 y.high ^= uint64(len(nonce)) * 8
341 y.low ^= uint64(len(additionalData)) * 8
342 y.high ^= uint64(len(ciphertext)) * 8
352 func getUint64(data []byte) uint64 {
353 r := uint64(data[0])<<56 |
354 uint64(data[1])<<48 |
355 uint64(data[2])<<40 |
356 uint64(data[3])<<32
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
gcm.go 49 low, high uint64
225 z.low ^= uint64(gcmReductionTable[msw]) << 48
327 y.high ^= uint64(len(nonce)) * 8
341 y.low ^= uint64(len(additionalData)) * 8
342 y.high ^= uint64(len(ciphertext)) * 8
352 func getUint64(data []byte) uint64 {
353 r := uint64(data[0])<<56 |
354 uint64(data[1])<<48 |
355 uint64(data[2])<<40 |
356 uint64(data[3])<<32
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
debug.go 201 return toInt(deb.uint64())
204 // uint64 returns and decodes the next unsigned integer, which must be present.
207 func (deb *debugger) uint64() uint64 {
247 n64, w, err := decodeUintReader(deb.r, deb.tmp) // deb.uint64 will error at EOF
272 // Convert the uint64 to a signed integer typeId
315 // uint returns the unsigned int at the input point, as a uint (not uint64).
317 return uint(deb.uint64())
332 x := int(deb.uint64())
345 delta := int(deb.uint64())
    [all...]
enc_helpers.go 28 reflect.Uint64: encUint64Array,
47 reflect.Uint64: encUint64Slice,
299 state.encodeUint(uint64(len(x)))
322 state.encodeUint(uint64(x))
344 state.encodeUint(uint64(x))
366 state.encodeUint(uint64(x))
381 slice, ok := v.Interface().([]uint64)
383 // It is kind uint64 but not type uint64. TODO: We can handle this unsafely.
410 state.encodeUint(uint64(x)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
debug.go 201 return toInt(deb.uint64())
204 // uint64 returns and decodes the next unsigned integer, which must be present.
207 func (deb *debugger) uint64() uint64 {
247 n64, w, err := decodeUintReader(deb.r, deb.tmp) // deb.uint64 will error at EOF
272 // Convert the uint64 to a signed integer typeId
315 // uint returns the unsigned int at the input point, as a uint (not uint64).
317 return uint(deb.uint64())
332 x := int(deb.uint64())
345 delta := int(deb.uint64())
    [all...]
enc_helpers.go 28 reflect.Uint64: encUint64Array,
47 reflect.Uint64: encUint64Slice,
299 state.encodeUint(uint64(len(x)))
322 state.encodeUint(uint64(x))
344 state.encodeUint(uint64(x))
366 state.encodeUint(uint64(x))
381 slice, ok := v.Interface().([]uint64)
383 // It is kind uint64 but not type uint64. TODO: We can handle this unsafely.
410 state.encodeUint(uint64(x)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/testdata/
const1.src 172 _ uint64 = 0 /* ERROR "overflows" */ - 1
173 _ uint64 = 0
174 _ uint64 = maxUint64
175 _ uint64 = maxUint64 /* ERROR "overflows" */ + 1
176 _ uint64 = smallestFloat64 /* ERROR "truncated" */
178 _ = uint64(0 /* ERROR "cannot convert" */ - 1)
179 _ = uint64(0)
180 _ = uint64(maxUint64)
181 _ = uint64(maxUint64 /* ERROR "cannot convert" */ + 1)
182 _ = uint64(smallestFloat64 /* ERROR "cannot convert" */
    [all...]
  /prebuilts/go/linux-x86/src/go/types/testdata/
const1.src 172 _ uint64 = 0 /* ERROR "overflows" */ - 1
173 _ uint64 = 0
174 _ uint64 = maxUint64
175 _ uint64 = maxUint64 /* ERROR "overflows" */ + 1
176 _ uint64 = smallestFloat64 /* ERROR "truncated" */
178 _ = uint64(0 /* ERROR "cannot convert" */ - 1)
179 _ = uint64(0)
180 _ = uint64(maxUint64)
181 _ = uint64(maxUint64 /* ERROR "cannot convert" */ + 1)
182 _ = uint64(smallestFloat64 /* ERROR "cannot convert" */
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/crypto/
des.a 133 0runtime.morestack_noctxt??"".autotmp_0007type.uint32"".autotmp_0003type.uint64"".autotmp_0001type.uint32"".autotmp_0000type.uint64(encoding/binary.v·2?type.uint64(encoding/binary.b·1/type.[]uint8(encoding/binary.b·2_type.[]uint8"".preOutputtype.uint64"".iotype.int"".right?type.uint32"".left?type.uint32"".decrypt?type.bool "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64??
149 0runtime.morestack_noctxt?? "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64?????B? ?Tgclocals·982cb2796f66aa5dcb9a70b2bf37e0e5Tgclocals·33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/crypto/des/block.go?"".decryptBlock??eH? %H;a??H??PH?\$PH?$?H?\$XH?$H?\$`H?\$H?\$hH?\$H?\$pH?\$H?\$xH?\$ H??$?H?\$(H??$?H?\$0H??$?H?\$8H??$?H?\$@?D$H??H??P???X???
159 0runtime.morestack_noctxt?? "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64?????L? ?Tgclocals·982cb2796f66aa5dcb9a70b2bf37e0e5Tgclocals·33cdeccccebe80329f1fdbee7f5874cb^prebuilts/go/darwin-x86/src/crypto/des/block.go?"".feistel??eH? %H;a?MH?? H?\$ H?$??\$(?$?H?D$H?t$0H1?1?1????H??H??*H???H??H??H?\$H??H??H??H?? @??H ?H??H????H??H??L$H??@?l$H???D$H?H??H??T$??H????H??H???H??@??H??H?$??T$H?t$?l$H??D?D$L?H??H???H??sCH??H???H??@s,H??? ?l$1?H??H??H????????L$8?H?? ?? ? ? ? ?????
176 0runtime.morestack_noctxt0@"".autotmp_0010type.uint32"".autotmp_0009type.uint64"".columntype.uint8 "".rowtype.uint8"".itype.uint8 "".sBoxLocationstype.uint64"".result type.uint32 "".keytype.uint64"".righttype.uint32@??@,?<V    ?  ?Tgclocals·790e5cc (…)
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/crypto/
des.a 133 0runtime.morestack_noctxt??"".autotmp_0007type.uint32"".autotmp_0003type.uint64"".autotmp_0001type.uint32"".autotmp_0000type.uint64(encoding/binary.v·2?type.uint64(encoding/binary.b·1/type.[]uint8(encoding/binary.b·2_type.[]uint8"".preOutputtype.uint64"".iotype.int"".right?type.uint32"".left?type.uint32"".decrypt?type.bool "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64??
149 0runtime.morestack_noctxt?? "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64?????B? ?Tgclocals·982cb2796f66aa5dcb9a70b2bf37e0e5Tgclocals·33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/crypto/des/block.go?"".decryptBlock??dH? %H;a??H??PH?\$PH?$?H?\$XH?$H?\$`H?\$H?\$hH?\$H?\$pH?\$H?\$xH?\$ H??$?H?\$(H??$?H?\$0H??$?H?\$8H??$?H?\$@?D$H??H??P???X???
159 0runtime.morestack_noctxt?? "".src`type.[]uint8 "".dst0type.[]uint8"".subkeystype.[]uint64?????L? ?Tgclocals·982cb2796f66aa5dcb9a70b2bf37e0e5Tgclocals·33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/crypto/des/block.go?"".feistel??dH? %H;a?MH?? H?\$ H?$??\$(?$?H?D$H?t$0H1?1?1????H??H??*H???H??H??H?\$H??H??H??H?? @??H ?H??H????H??H??L$H??@?l$H???D$H?H??H??T$??H????H??H???H??@??H??H?$??T$H?t$?l$H??D?D$L?H??H???H??sCH??H???H??@s,H??? ?l$1?H??H??H????????L$8?H?? ?? ? ? ? ?????
176 0runtime.morestack_noctxt0@"".autotmp_0010type.uint32"".autotmp_0009type.uint64"".columntype.uint8 "".rowtype.uint8"".itype.uint8 "".sBoxLocationstype.uint64"".result type.uint32 "".keytype.uint64"".righttype.uint32@??@,?<V    ?  ?Tgclocals·790e5cc (…)
    [all...]
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 136 STDMETHOD(SetTotal)(const UInt64 *files, const UInt64 *bytes);
137 STDMETHOD(SetCompleted)(const UInt64 *files, const UInt64 *bytes);
147 STDMETHODIMP CArchiveOpenCallback::SetTotal(const UInt64 * /* files */, const UInt64 * /* bytes */)
152 STDMETHODIMP CArchiveOpenCallback::SetCompleted(const UInt64 * /* files */, const UInt64 * /* bytes */)
196 STDMETHOD(SetTotal)(UInt64 size);
197 STDMETHOD(SetCompleted)(const UInt64 *completeValue);
    [all...]
  /external/google-breakpad/src/common/dwarf/
bytereader.h 70 // a uint64 so that it is compatible with ReadAddress and
73 uint64 ReadFourBytes(const char* buffer) const;
77 uint64 ReadEightBytes(const char* buffer) const;
96 uint64 ReadUnsignedLEB128(const char* buffer, size_t* len) const;
138 uint64 ReadAddress(const char* buffer) const;
175 uint64 ReadInitialLength(const char* start, size_t* len);
182 uint64 ReadOffset(const char* buffer) const;
237 void SetCFIDataBase(uint64 section_base, const char *buffer_base);
241 void SetTextBase(uint64 text_base);
248 void SetDataBase(uint64 data_base)
    [all...]
  /external/llvm/bindings/go/llvm/
dibuilder.go 279 SizeInBits uint64
280 AlignInBits uint64
301 SizeInBits uint64
302 AlignInBits uint64 // optional
342 SizeInBits uint64
343 AlignInBits uint64
377 SizeInBits uint64
378 AlignInBits uint64
406 SizeInBits uint64
407 AlignInBits uint64
    [all...]

Completed in 3956 milliseconds

<<21222324252627282930>>