/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-nosym.d | 4 #ld: --oformat binary
|
b-nosym.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-offloc.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-offlocmis.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
b-twoinsn.s | 1 % The .text contents is supposed to be linked --oformat binary, and will
|
b-widec2.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
/external/protobuf/js/ |
gulpfile.js | 12 exec(protoc + ' --js_out=library=testproto_libs,binary:. -I ../src -I . *.proto ../src/google/protobuf/descriptor.proto', 21 exec('mkdir -p commonjs_out && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out -I ../src -I commonjs -I . *.proto commonjs/test*/*.proto ../src/google/protobuf/descriptor.proto', 32 exec('./node_modules/google-closure-library/closure/bin/calcdeps.py -i message.js -i binary/reader.js -i binary/writer.js -i commonjs/export.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > google-protobuf.js', 61 var cmd = "mkdir -p commonjs_out/binary && mkdir -p commonjs_out/test_node_modules && "; 68 glob.sync('binary/*_test.js').forEach(addTestFile); 82 exec('./node_modules/google-closure-library/closure/bin/build/depswriter.py *.js binary/*.js > deps.js',
|
/external/boringssl/src/ssl/test/runner/ |
chacha20_poly1305.go | 20 "encoding/binary" 60 binary.LittleEndian.PutUint32(out[i*4:i*4+4], workingState[i]+state[i]) 86 state[4+i] = binary.LittleEndian.Uint32(key[i*4 : i*4+4]) 91 state[14] = binary.LittleEndian.Uint32(nonce[0:4]) 92 state[15] = binary.LittleEndian.Uint32(nonce[4:8]) 94 state[13] = binary.LittleEndian.Uint32(nonce[0:4]) 95 state[14] = binary.LittleEndian.Uint32(nonce[4:8]) 96 state[15] = binary.LittleEndian.Uint32(nonce[8:12]) 151 binary.LittleEndian.PutUint64(out, uint64(len(additionalData))) 153 binary.LittleEndian.PutUint64(out, uint64(len(ciphertext)) [all...] |
/external/flatbuffers/include/flatbuffers/ |
util.h | 117 typedef bool (*LoadFileFunction)(const char *filename, bool binary, 134 // false otherwise. If "binary" is false data is read 137 bool LoadFile(const char *name, bool binary, std::string *buf); 141 // If "binary" is false data is written using ifstream's 145 bool binary) { 146 std::ofstream ofs(name, binary ? std::ofstream::binary : std::ofstream::out); 153 // successful, false otherwise. If "binary" is false 156 inline bool SaveFile(const char *name, const std::string &buf, bool binary) { 157 return SaveFile(name, buf.c_str(), buf.size(), binary); [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/objfile/ |
disasm.go | 10 "encoding/binary" 32 byteOrder binary.ByteOrder // byte order for goarch 193 type disasmFunc func(code []byte, pc uint64, lookup lookupFunc, ord binary.ByteOrder) (text string, size int) 195 func disasm_386(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 199 func disasm_amd64(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 236 func disasm_arm(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 249 func disasm_ppc64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.ByteOrder) (string, int) { 270 var byteOrders = map[string]binary.ByteOrder{ 271 "386": binary.LittleEndian, 272 "amd64": binary.LittleEndian [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/objfile/ |
disasm.go | 10 "encoding/binary" 32 byteOrder binary.ByteOrder // byte order for goarch 193 type disasmFunc func(code []byte, pc uint64, lookup lookupFunc, ord binary.ByteOrder) (text string, size int) 195 func disasm_386(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 199 func disasm_amd64(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 236 func disasm_arm(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder) (string, int) { 249 func disasm_ppc64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.ByteOrder) (string, int) { 270 var byteOrders = map[string]binary.ByteOrder{ 271 "386": binary.LittleEndian, 272 "amd64": binary.LittleEndian [all...] |
/test/vts-testcase/performance/binder_benchmark/ |
BinderPerformanceTest.py | 102 """Runs the native binary and parses its result. 110 binary = "/data/local/tmp/%s/libbinder_benchmark%s" % (bits, bits) 113 "chmod 755 %s" % binary, "LD_LIBRARY_PATH=/data/local/tmp/%s/hw:" 115 "%s --benchmark_format=json" % (bits, bits, binary)
|
/test/vts-testcase/performance/hwbinder_benchmark/ |
HwBinderPerformanceTest.py | 104 """Runs the native binary and parses its result. 114 binary = "/data/local/tmp/%s/libhwbinder_benchmark%s" % (bits, bits) 117 "chmod 755 %s" % binary, 122 (bits, bits, bits, binary, self.hidl_hal_mode.encode("utf-8"))
|
/test/vts-testcase/performance/hwbinder_benchmark_adb/ |
HwBinderPerformanceAdbTest.py | 95 """Runs the native binary and parses its result. 105 binary = "/data/local/tmp/%s/libhwbinder_benchmark%s" % (bits, bits) 107 self.dut.adb.shell("chmod 755 %s" % binary) 115 (bits, bits, bits, binary, self.hidl_hal_mode.encode("utf-8")))
|
/prebuilts/go/darwin-x86/src/debug/gosym/ |
pclntab.go | 12 "encoding/binary" 37 binary binary.ByteOrder 72 val := binary.BigEndian.Uint32(b) 149 return uint64(t.binary.Uint32(b)) 151 return t.binary.Uint64(b) 176 case binary.LittleEndian.Uint32(t.Data): 177 t.binary = binary.LittleEndian 178 case binary.BigEndian.Uint32(t.Data) [all...] |
/prebuilts/go/darwin-x86/src/debug/macho/ |
file.go | 13 "encoding/binary" 22 ByteOrder binary.ByteOrder 167 // Open opens the named file using os.Open and prepares it for use as a Mach-O binary. 194 // NewFile creates a new File for accessing a Mach-O binary in an underlying reader. 195 // The Mach-O binary is expected to start at position 0 in the ReaderAt. 206 be := binary.BigEndian.Uint32(ident[0:]) 207 le := binary.LittleEndian.Uint32(ident[0:]) 210 f.ByteOrder = binary.BigEndian 213 f.ByteOrder = binary.LittleEndian 220 if err := binary.Read(sr, f.ByteOrder, &f.FileHeader); err != nil [all...] |
/prebuilts/go/linux-x86/src/debug/gosym/ |
pclntab.go | 12 "encoding/binary" 37 binary binary.ByteOrder 72 val := binary.BigEndian.Uint32(b) 149 return uint64(t.binary.Uint32(b)) 151 return t.binary.Uint64(b) 176 case binary.LittleEndian.Uint32(t.Data): 177 t.binary = binary.LittleEndian 178 case binary.BigEndian.Uint32(t.Data) [all...] |
/prebuilts/go/linux-x86/src/debug/macho/ |
file.go | 13 "encoding/binary" 22 ByteOrder binary.ByteOrder 167 // Open opens the named file using os.Open and prepares it for use as a Mach-O binary. 194 // NewFile creates a new File for accessing a Mach-O binary in an underlying reader. 195 // The Mach-O binary is expected to start at position 0 in the ReaderAt. 206 be := binary.BigEndian.Uint32(ident[0:]) 207 le := binary.LittleEndian.Uint32(ident[0:]) 210 f.ByteOrder = binary.BigEndian 213 f.ByteOrder = binary.LittleEndian 220 if err := binary.Read(sr, f.ByteOrder, &f.FileHeader); err != nil [all...] |
/build/make/core/ |
host_executable_internal.mk | 27 include $(BUILD_SYSTEM)/binary.mk
|
/device/google/contexthub/firmware/os/platform/stm32/flash_script/ |
Makefile | 24 $(OBJCOPY) -j .data -j .text -I elf32-littlearm -O binary tool.elf tool.bin
|
/external/clang/test/SemaCXX/ |
null_in_arithmetic_ops.cpp | 31 expected-error {{invalid operands to binary expression ('long' and 'void (^)()')}} \ 32 expected-error {{invalid operands to binary expression ('void (^)()' and 'long')}} 34 expected-error {{invalid operands to binary expression ('long' and 'void (X::*)()')}} \ 35 expected-error {{invalid operands to binary expression ('void (X::*)()' and 'long')}}
|
/external/e2fsprogs/debian/attic/libs/ |
rules | 7 # The `binary' target must be run as root, as it needs to install files with 68 binary-indep: build 71 binary-arch: build 180 binary: binary-indep binary-arch 182 .PHONY: binary binary-arch binary-indep clean checkroot
|
/external/ipsec-tools/src/racoon/ |
plog.h | 9 * Redistribution and use in source and binary forms, with or without 14 * 2. Redistributions in binary form must reproduce the above copyright 58 extern char *binsanitize(char *binary, size_t size);
|
/external/libtextclassifier/common/ |
file-utils.cc | 36 std::ifstream input_stream(filename, std::ifstream::binary);
|
/prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
decode_test.go | 8 "encoding/binary" 45 inst, err := Decode(code, binary.BigEndian)
|