/device/google/contexthub/firmware/app/ |
common.mk | 32 $(OBJCOPY) -j.relocs -j.flash -j.data -j.dynsym -O binary $(APP_ELF) $(APP_BIN)
|
/device/google/contexthub/firmware/misc/platform/stm32f4xx/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);
|
/system/extras/libfec/test/ |
test_read.cpp | 46 ofstream output(argv[2], ios::binary | ios::trunc);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/ |
tlspic.s | 6 ! Main binary, PIC
|
/toolchain/binutils/binutils-2.25/libiberty/ |
pex-djgpp.c | 84 const char *name, int binary) 86 return open (name, O_RDONLY | (binary ? O_BINARY : O_TEXT)); 93 const char *name, int binary, int append) 101 | (binary ? O_BINARY : O_TEXT)),
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
toy.ml | 8 (* Install standard binary operators.
|
/external/nanopb-c/generator/ |
protoc-gen-nanopb.bat | 7 :: Note that if you use the binary package of nanopb, the protoc
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-478612.js | 7 // This is used to force binary operations below to have tagged representation.
|
/external/webrtc/webrtc/modules/audio_processing/transient/test/ |
plotDetection.m | 7 %DATfile: The file containing the detection values in binary float format.
|
/frameworks/native/services/surfaceflinger/tests/ |
Android.mk | 22 # Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
|
/hardware/ril/rild/ |
Android.mk | 35 # For radiooptions binary
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ |
cons.d | 8 0+000 <binary>:
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-fixo2.d | 5 #ld: --oformat binary
|
b-widec.s | 1 % The .text contents is supposed to be linked --oformat binary with
|
sec-5.d | 5 #ld: --oformat binary 14 # formed from a link to binary format, like the b-*.d tests for mmo
|
/external/v8/test/webkit/fast/js/ |
function-decompilation-operators.js | 4 // Redistribution and use in source and binary forms, with or without 9 // 2. Redistributions in binary form must reproduce the above copyright 24 description("This test checks toString() round-trip decompilation for binary and unary operators.");
|
/external/v8/tools/testrunner/server/ |
work_handler.py | 2 # Redistribution and use in source and binary forms, with or without 8 # * Redistributions in binary form must reproduce the above 62 for binary in packet.binaries: 63 if not self._UnpackBinary(binary, packet.pubkey_fingerprint): 89 def _UnpackBinary(self, binary, pubkey_fingerprint): 90 binary_name = binary["name"] 98 if not signatures.VerifySignature(target, binary["blob"], 99 binary["sign"], pubkeyfile):
|
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_stdio.cpp | 189 case ios_base::out | ios_base::binary: 190 case ios_base::out | ios_base::trunc | ios_base::binary: 198 case ios_base::out | ios_base::app | ios_base::binary: 206 case ios_base::in | ios_base::binary: 214 case ios_base::in | ios_base::out | ios_base::binary: 222 case ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary:
|
/bootable/recovery/ |
install.cpp | 48 #define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary" 109 // If the package contains an update binary, extract it and run it. 123 const char* binary = "/tmp/update_binary"; local 124 unlink(binary); 125 int fd = creat(binary, 0755); 128 LOGE("Can't make %s\n", binary); 143 // When executing the update binary contained in the package, the 193 args[0] = binary; 206 execv(binary, (char* const*)args); 207 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno)) [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
sancov.py | 22 " " + prog_name + " missing BINARY < LIST_OF_PCS\n" 182 def GetInstrumentedPCs(binary): 189 "grep '^\s\+[0-9a-f]\+' -o" % binary 198 def PrintMissing(binary): 199 if not os.path.isfile(binary): 200 raise Exception('File not found: %s' % binary) 201 instrumented = GetInstrumentedPCs(binary) 204 binary) 211 "%s: WARNING: stdin contains PCs not found in binary" % prog_name
|
/development/python-packages/gdbrunner/ |
__init__.py | 205 RuntimeError: could not find the executable binary. 225 file_name = "gdbclient-binary-{}".format(os.getppid()) 250 """Parse a binary's ELF header for arch.""" 253 binary = binary_file.read(0x14) 255 raise RuntimeError("failed to read binary file") 256 ei_class = ord(binary[0x4]) # 1 = 32-bit, 2 = 64-bit 257 ei_data = ord(binary[0x5]) # Endianness 261 raise RuntimeError("binary isn't little-endian?") 263 e_machine = ord(binary[0x13]) << 8 | ord(binary[0x12] [all...] |
/development/testrunner/ |
run_command.py | 150 def RunHostCommand(binary, valgrind=False): 153 Runs the host binary and returns the exit code. 160 binary: full path of the file to be run. 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 176 "--leak-check=yes", "-q", binary],
|