Home
last modified time | relevance | path

Searched defs:ByteOrder (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/binary/
Dbinary.go39 type ByteOrder interface { interface
240 func Read(r io.Reader, order ByteOrder, data any) error {
279 func Decode(buf []byte, order ByteOrder, data any) (int, error) {
312 func decodeFast(bs []byte, order ByteOrder, data any) bool {
392 func Write(w io.Writer, order ByteOrder, data any) error {
422 func Encode(buf []byte, order ByteOrder, data any) (int, error) {
452 func Append(buf []byte, order ByteOrder, data any) ([]byte, error) {
473 func encodeFast(bs []byte, order ByteOrder, data any) {
Dbinary_test.go117 func checkResult(t *testing.T, dir string, order ByteOrder, err error, have, want any) {
185 func testRead(t *testing.T, order ByteOrder, b []byte, s1 any) {
195 func testWrite(t *testing.T, order ByteOrder, b []byte, s1 any) {
658 func testReadInvalidDestination(t *testing.T, order ByteOrder) {
/aosp_15_r20/external/pdfium/core/fxcrt/
H A Dbyteorder_unittest.cpp21 TEST(ByteOrder, ByteSwapToLE16) { in TEST() argument
35 TEST(ByteOrder, ByteSwapToLE32) { in TEST() argument
47 TEST(ByteOrder, ByteSwapToBE16) { in TEST() argument
61 TEST(ByteOrder, ByteSwapToBE32) { in TEST() argument
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/objfile/
Ddisasm.go296 func disasm_386(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (string…
300 func disasm_amd64(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (stri…
341 func disasm_arm(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (string…
356 func disasm_arm64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.ByteOrder, gnuAsm boo…
369 func disasm_ppc64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.ByteOrder, gnuAsm boo…
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/
Dbyteorder.rs3 pub trait ByteOrder { trait
20 impl ByteOrder for $t { impl
Dstate_id.rs66 pub fn write_state_id_bytes<E: ByteOrder, S: StateID>( in write_state_id_bytes()
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/nio/
DByteOrder.java36 public final class ByteOrder { class
40 private ByteOrder(String name) { in ByteOrder() method in ByteOrder
/aosp_15_r20/libcore/ojluni/src/main/java/java/nio/
H A DByteOrder.java36 public final class ByteOrder { class
40 private ByteOrder(String name) { in ByteOrder() method in ByteOrder
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/7/libcore/ojluni/src/main/java/java/nio/
DByteOrder.java36 public final class ByteOrder { class
40 private ByteOrder(String name) { in ByteOrder() method in ByteOrder
/aosp_15_r20/external/rust/android-crates-io/crates/bincode/src/
Dbyteorder.rs130 pub trait ByteOrder: Clone + Copy { trait
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DFileWriter.h31 llvm::support::endianness ByteOrder; variable
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/GSYM/
H A DFileWriter.h31 llvm::support::endianness ByteOrder; variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/DebugInfo/GSYM/
DFileWriter.h31 llvm::endianness ByteOrder; variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/DebugInfo/GSYM/
DFileWriter.h31 llvm::endianness ByteOrder; variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/DebugInfo/GSYM/
DFileWriter.h31 llvm::endianness ByteOrder; variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/DebugInfo/GSYM/
DFileWriter.h31 llvm::endianness ByteOrder; variable
/aosp_15_r20/build/soong/elf/
H A Delf.go82 func readNote(note io.Reader, byteOrder binary.ByteOrder) (map[string][]byte, error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/elfexec/
Delfexec.go39 func parseNotes(reader io.Reader, alignment int, order binary.ByteOrder) ([]elfNote, error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
Ddecode.go171 func Decode(src []byte, ord binary.ByteOrder) (inst Inst, err error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Drewrite.go2015 func read16(sym interface{}, off int64, byteorder binary.ByteOrder) uint16 {
2029 func read32(sym interface{}, off int64, byteorder binary.ByteOrder) uint32 {
2041 func read64(sym interface{}, off int64, byteorder binary.ByteOrder) uint64 {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/sys/
Darch.go33 ByteOrder binary.ByteOrder member
/aosp_15_r20/external/llvm/bindings/go/llvm/
H A Dtarget.go136 func (td TargetData) ByteOrder() ByteOrdering { return ByteOrdering(C.LLVMByteOrder(td.C)) } func
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/dwarf/
Dentry.go825 func (r *Reader) ByteOrder() binary.ByteOrder { func
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/link/internal/loadelf/
Dldelf.go190 func parseArmAttributes(e binary.ByteOrder, data []byte) (found bool, ehdrFlags uint32, err error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/macho/
Dfile.go35 ByteOrder binary.ByteOrder member

12345678910>>...12