/prebuilts/go/linux-x86/src/encoding/binary/ |
binary.go | 36 Uint64([]byte) uint64 39 PutUint64([]byte, uint64) 69 func (littleEndian) Uint64(b []byte) uint64 { 70 return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 | 71 uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<5 [all...] |
/external/lzma/C/ |
7z.h | 53 UInt64 CodersUnpackSizes[SZ_NUM_CODERS_OUT_STREAMS_IN_FOLDER_MAX];
84 // UInt64 *Vals;
97 UInt64 *PackPositions; // NumPackStreams + 1
109 // UInt64 *CoderUnpackSizes;
114 ILookInStream *stream, UInt64 startPos,
142 UInt64 startPosAfterHeader;
143 UInt64 dataPos;
147 UInt64 *UnpackPositions;
171 UInt64 SzArEx_GetFolderStreamPos(const CSzArEx *p, UInt32 folderIndex, UInt32 indexInFolder);
172 int SzArEx_GetFolderFullPackSize(const CSzArEx *p, UInt32 folderIndex, UInt64 *resSize); [all...] |
BraIA64.c | 31 UInt64 instruction, instNorm;
39 instruction += (UInt64)data[i + j + bytePos] << (8 * j);
57 instNorm &= ~((UInt64)(0x8FFFFF) << 13);
58 instNorm |= ((UInt64)(dest & 0xFFFFF) << 13);
59 instNorm |= ((UInt64)(dest & 0x100000) << (36 - 20));
|
/prebuilts/go/darwin-x86/src/crypto/sha512/ |
sha512block.go | 13 var _K = []uint64{ 97 var w [80]uint64 102 w[i] = uint64(p[j])<<56 | uint64(p[j+1])<<48 | uint64(p[j+2])<<40 | uint64(p[j+3])<<32 | 103 uint64(p[j+4])<<24 | uint64(p[j+5])<<16 | uint64(p[j+6])<<8 | uint64(p[j+7] [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
parfor_test.go | 19 data := make([]uint64, N) 20 for i := uint64(0); i < N; i++ { 28 for i := uint64(0); i < N; i++ { 39 data := make([]uint64, N) 40 for i := uint64(0); i < N; i++ { 50 for i := uint64(0); i < N; i++ { 96 N := uint64(1e7) 100 data := make([]uint64, N) 101 for i := uint64(0); i < N; i++ { 120 for i := uint64(0); i < N; i++ [all...] |
/prebuilts/go/linux-x86/src/crypto/sha512/ |
sha512block.go | 13 var _K = []uint64{ 97 var w [80]uint64 102 w[i] = uint64(p[j])<<56 | uint64(p[j+1])<<48 | uint64(p[j+2])<<40 | uint64(p[j+3])<<32 | 103 uint64(p[j+4])<<24 | uint64(p[j+5])<<16 | uint64(p[j+6])<<8 | uint64(p[j+7] [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
parfor_test.go | 19 data := make([]uint64, N) 20 for i := uint64(0); i < N; i++ { 28 for i := uint64(0); i < N; i++ { 39 data := make([]uint64, N) 40 for i := uint64(0); i < N; i++ { 50 for i := uint64(0); i < N; i++ { 96 N := uint64(1e7) 100 data := make([]uint64, N) 101 for i := uint64(0); i < N; i++ { 120 for i := uint64(0); i < N; i++ [all...] |
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
compare.h | 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed); 32 uint64 ComputeSumSquareError(const uint8* src_a, 36 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a, 43 double SumSquareErrorToPsnr(uint64 sse, uint64 count);
|
/external/libyuv/files/include/libyuv/ |
compare.h | 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed); 27 uint64 ComputeSumSquareError(const uint8* src_a, 31 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a, 38 double SumSquareErrorToPsnr(uint64 sse, uint64 count);
|
/prebuilts/go/darwin-x86/src/debug/pe/ |
pe.go | 65 ImageBase uint64 80 SizeOfStackReserve uint64 81 SizeOfStackCommit uint64 82 SizeOfHeapReserve uint64 83 SizeOfHeapCommit uint64
|
/prebuilts/go/darwin-x86/test/ |
typeswitch1.go | 37 case uint64: 38 return fmt.Sprint("unsigned64 ", uint64(xx)) 56 case uint64: 57 return fmt.Sprint("unsigned64 ", xx.(uint64)) 82 check(uint64(1), "unsigned64 1")
|
/prebuilts/go/linux-x86/src/debug/pe/ |
pe.go | 65 ImageBase uint64 80 SizeOfStackReserve uint64 81 SizeOfStackCommit uint64 82 SizeOfHeapReserve uint64 83 SizeOfHeapCommit uint64
|
/prebuilts/go/linux-x86/test/ |
typeswitch1.go | 37 case uint64: 38 return fmt.Sprint("unsigned64 ", uint64(xx)) 56 case uint64: 57 return fmt.Sprint("unsigned64 ", xx.(uint64)) 82 check(uint64(1), "unsigned64 1")
|
/prebuilts/go/darwin-x86/src/sync/atomic/ |
doc.go | 65 func SwapUint64(addr *uint64, new uint64) (old uint64) 82 // CompareAndSwapUint64 executes the compare-and-swap operation for a uint64 value. 83 func CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool) 103 // To subtract a signed positive constant value c from x, do AddUint64(&x, ^uint64(c-1)). 104 // In particular, to decrement x, do AddUint64(&x, ^uint64(0)). 105 func AddUint64(addr *uint64, delta uint64) (new uint64 [all...] |
/prebuilts/go/linux-x86/src/sync/atomic/ |
doc.go | 65 func SwapUint64(addr *uint64, new uint64) (old uint64) 82 // CompareAndSwapUint64 executes the compare-and-swap operation for a uint64 value. 83 func CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool) 103 // To subtract a signed positive constant value c from x, do AddUint64(&x, ^uint64(c-1)). 104 // In particular, to decrement x, do AddUint64(&x, ^uint64(0)). 105 func AddUint64(addr *uint64, delta uint64) (new uint64 [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/debug/ |
gosym.a | 18 type @"encoding/binary".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) } 19 type @"".Sym struct { Value uint64; Type byte; Name string; GoType uint64; Func *@"".Func } 27 type @"".Func struct { Entry uint64; ? *@"".Sym; End uint64; Params []*@"".Sym; Locals []*@"".Sym; FrameSize int; LineTable *@"".LineTable; Obj *@"".Obj } 28 type @"".LineTable struct { Data []byte; PC uint64; Line int; @"".mu @"sync".Mutex; @"".go12 int; @"".binary @"encoding/binary".ByteOrder; @"".quantum uint32; @"".ptrsize uint32; @"".functab []byte; @"".nfunctab uint32; @"".filetab []byte; @"".nfiletab uint32; @"".fileMap map[string]uint32 } 29 func (@"".t·2 *@"".LineTable) LineToPC (@"".line·3 int, @"".maxpc·4 uint64) (? uint64) [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64/debug/ |
gosym.a | 18 type @"encoding/binary".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) } 19 type @"".Sym struct { Value uint64; Type byte; Name string; GoType uint64; Func *@"".Func } 27 type @"".Func struct { Entry uint64; ? *@"".Sym; End uint64; Params []*@"".Sym; Locals []*@"".Sym; FrameSize int; LineTable *@"".LineTable; Obj *@"".Obj } 28 type @"".LineTable struct { Data []byte; PC uint64; Line int; @"".mu @"sync".Mutex; @"".go12 int; @"".binary @"encoding/binary".ByteOrder; @"".quantum uint32; @"".ptrsize uint32; @"".functab []byte; @"".nfunctab uint32; @"".filetab []byte; @"".nfiletab uint32; @"".fileMap map[string]uint32 } 29 func (@"".t·2 *@"".LineTable) LineToPC (@"".line·3 int, @"".maxpc·4 uint64) (? uint64) [all...] |
/external/lzma/CPP/7zip/Compress/ |
Bcj2Coder.cpp | 45 HRESULT CEncoder::CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
46 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams,
64 UInt64 inSize = 0;
88 UInt64 nowPos64 = 0;
93 UInt64 subStreamIndex = 0;
94 UInt64 subStreamStartPos = 0;
95 UInt64 subStreamEndPos = 0;
162 UInt64 currentPos = (nowPos64 + bufPos);
165 UInt64 subStreamSize;
193 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src)); [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/hash/ |
crc64.a | 13 type @"".Table [256]uint64 14 func @"".MakeTable (@"".poly·2 uint64) (? *@"".Table) 15 type @"hash".Hash64 interface { BlockSize() (? int); Reset(); Size() (? int); Sum(@"hash".b []byte) (? []byte); Sum64() (? uint64); Write(@"io".p []byte) (@"io".n int, @"io".err error) } 17 func @"".Update (@"".crc·2 uint64, @"".tab·3 *@"".Table "esc:0x1", @"".p·4 []byte "esc:0x1") (? uint64) 18 func @"".Checksum (@"".data·2 []byte "esc:0x1", @"".tab·3 *@"".Table "esc:0x1") (? uint64) 20 type @"".digest struct { @"".crc uint64; @"".tab *@"".Table } 24 func (@"".d·2 *@"".digest "esc:0x1") Sum (@"".in·3 []byte "esc:0x1a") (? []byte) { var @"".s·4 uint64; @"".s·4 = @"".d·2.Sum64(); return append(@"".in·3, byte(@"".s·4 >> 0x38), byte(@"".s·4 >> 0x30), byte(@"".s·4 >> 0x28), byte(@"".s·4 >> 0x20), byte(@"".s·4 >> 0x18), byte(@"".s·4 >> 0x10), byte(@"".s·4 >> 0x8), byte(@"".s·4)) } 25 func (@"".d·2 *@"".digest "esc:0x1") Sum64 () (? uint64) { return @"".d·2.@"".crc } 42 0runtime.morestack_noctxt "".autotmp_0001 type.int "".~r1 type.*"".Table "".poly type.uint64 |