HomeSort by relevance Sort by last modified time
    Searched refs:binary (Results 76 - 100 of 2088) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/ios.base/ios.types/ios_openmode/
openmode.pass.cpp 16 // static const openmode binary;
28 assert(std::ios_base::binary);
37 & std::ios_base::binary
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
b-badfil1.d 5 #ld: --oformat binary
b-badfixo.d 5 #ld: --oformat binary
b-badloc.d 5 #ld: --oformat binary
b-badlop.d 5 #ld: --oformat binary
b-badlop.s 1 % The .text contents is supposed to be linked --oformat binary with
b-badm.d 4 #ld: --oformat binary
b-badquot.d 5 #ld: --oformat binary
b-badrx1.d 5 #ld: --oformat binary
b-badrx2.d 5 #ld: --oformat binary
b-widec2.d 4 #ld: --oformat binary
b-widec3.d 4 #ld: --oformat binary
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
objdumpext_test.go 10 "encoding/binary"
184 binary.Write(&buf, binary.LittleEndian, &hdr)
186 binary.Write(&buf, binary.LittleEndian, &prog)
188 binary.Write(&buf, binary.LittleEndian, &sect)
208 binary.Write(&buf, binary.LittleEndian, &hdr)
219 binary.Write(&buf, binary.LittleEndian, &prog
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
objdumpext_test.go 10 "encoding/binary"
184 binary.Write(&buf, binary.LittleEndian, &hdr)
186 binary.Write(&buf, binary.LittleEndian, &prog)
188 binary.Write(&buf, binary.LittleEndian, &sect)
208 binary.Write(&buf, binary.LittleEndian, &hdr)
219 binary.Write(&buf, binary.LittleEndian, &prog
    [all...]
  /build/soong/cc/libbuildversion/tests/
build_version_test.cpp 25 TEST(BuildNumber, binary) {
26 printf("binary version: %s\n", android::build::GetBuildNumber().c_str());
  /external/libunwind/tests/
run-coredump-unwind 9 binary="$1"
16 # Extract the dynamic symbols from the main binary, there is no need to also have these
18 nm -D "$binary" --format=posix --defined-only | awk '{ print $1 }' | sort > "$dynsyms"
25 #Inject the compressed data into the .gnu_debugdata section of the original binary
28 objcopy --add-section .gnu_debugdata="$mini_debuginfo" "$binary"
31 strip "$binary" ## throw away the symbol table
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute_internal.h 36 struct radeon_shader_binary binary; member in struct:r600_pipe_compute
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_endian.cpp 49 spv_result_t spvBinaryEndianness(spv_const_binary binary,
51 if (!binary->code || !binary->wordCount) return SPV_ERROR_INVALID_BINARY;
55 memcpy(bytes, binary->code, sizeof(uint32_t));
spirv_endian.h 28 // Gets the endianness of the SPIR-V module given in the binary parameter.
31 spv_result_t spvBinaryEndianness(const spv_const_binary binary,
  /external/gptfdisk/
gdisk_test.sh 367 for binary in gdisk sgdisk
370 printf "\033[0;34m**Testing $binary binary**\033[m\n"
372 create_table "$binary"
373 create_partition "$binary"
374 change_partition_name "$binary"
375 change_partition_type "$binary"
376 backup_table "$binary"
377 delete_partition "$binary"
379 change_disk_uid "$binary"
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/python/
PythonBinaryHostTestTest.java 65 /** Test that when running a python binary the output is parsed to obtain results. */
68 File binary = FileUtil.createTempFile("python-dir", ""); local
71 setter.setOptionValue("python-binaries", binary.getAbsolutePath());
78 EasyMock.eq(binary.getAbsolutePath()),
81 mMockListener.testRunStarted(binary.getName(), 5);
91 FileUtil.deleteFile(binary);
96 * If the binary returns an exception status, we should throw a runtime exception since
97 * something went wrong with the binary setup.
101 File binary = FileUtil.createTempFile("python-dir", ""); local
104 setter.setOptionValue("python-binaries", binary.getAbsolutePath())
134 File binary = FileUtil.createTempFile("python-dir", ""); local
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_amd64.go 9 import "encoding/binary"
81 state[4] = binary.LittleEndian.Uint32(key[:4])
82 state[5] = binary.LittleEndian.Uint32(key[4:8])
83 state[6] = binary.LittleEndian.Uint32(key[8:12])
84 state[7] = binary.LittleEndian.Uint32(key[12:16])
85 state[8] = binary.LittleEndian.Uint32(key[16:20])
86 state[9] = binary.LittleEndian.Uint32(key[20:24])
87 state[10] = binary.LittleEndian.Uint32(key[24:28])
88 state[11] = binary.LittleEndian.Uint32(key[28:32])
91 state[13] = binary.LittleEndian.Uint32(nonce[:4]
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19201.go 10 "encoding/binary"
18 want = binary.BigEndian.Uint32(bin)
41 m.code = binary.BigEndian.Uint32(bin)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_amd64.go 9 import "encoding/binary"
81 state[4] = binary.LittleEndian.Uint32(key[:4])
82 state[5] = binary.LittleEndian.Uint32(key[4:8])
83 state[6] = binary.LittleEndian.Uint32(key[8:12])
84 state[7] = binary.LittleEndian.Uint32(key[12:16])
85 state[8] = binary.LittleEndian.Uint32(key[16:20])
86 state[9] = binary.LittleEndian.Uint32(key[20:24])
87 state[10] = binary.LittleEndian.Uint32(key[24:28])
88 state[11] = binary.LittleEndian.Uint32(key[28:32])
91 state[13] = binary.LittleEndian.Uint32(nonce[:4]
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19201.go 10 "encoding/binary"
18 want = binary.BigEndian.Uint32(bin)
41 m.code = binary.BigEndian.Uint32(bin)

Completed in 1230 milliseconds

1 2 34 5 6 7 8 91011>>