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

1 23 4 5 6 7 8 91011>>

  /system/chre/host/common/include/chre_host/
fragmented_load_transaction.h 39 std::vector<uint8_t> binary; member in struct:android::chre::FragmentedLoadRequest
43 const std::vector<uint8_t>& binary) :
44 FragmentedLoadRequest(fragmentId, transactionId, 0, 0, 0, 0, binary) {}
49 size_t appTotalSizeBytes, const std::vector<uint8_t>& binary)
56 binary(binary) {}
64 * fragment and send a load request with the fragmented binary and the fragment
74 * @param appBinary the nanoapp binary data
84 * binary. Invoking getNextRequest() will prepare the next fragment for a
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_generic.go 8 import "encoding/binary"
19 j4 := binary.LittleEndian.Uint32(k[0:4])
20 j5 := binary.LittleEndian.Uint32(k[4:8])
21 j6 := binary.LittleEndian.Uint32(k[8:12])
22 j7 := binary.LittleEndian.Uint32(k[12:16])
23 j8 := binary.LittleEndian.Uint32(k[16:20])
24 j9 := binary.LittleEndian.Uint32(k[20:24])
25 j10 := binary.LittleEndian.Uint32(k[24:28])
26 j11 := binary.LittleEndian.Uint32(k[28:32])
27 j12 := binary.LittleEndian.Uint32(in[0:4]
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/internal/chacha20/
chacha_generic.go 8 import "encoding/binary"
19 j4 := binary.LittleEndian.Uint32(k[0:4])
20 j5 := binary.LittleEndian.Uint32(k[4:8])
21 j6 := binary.LittleEndian.Uint32(k[8:12])
22 j7 := binary.LittleEndian.Uint32(k[12:16])
23 j8 := binary.LittleEndian.Uint32(k[16:20])
24 j9 := binary.LittleEndian.Uint32(k[20:24])
25 j10 := binary.LittleEndian.Uint32(k[24:28])
26 j11 := binary.LittleEndian.Uint32(k[28:32])
27 j12 := binary.LittleEndian.Uint32(in[0:4]
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/inet/
nsap_addr.c 58 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) {
63 _DIAGASSERT(binary != NULL);
82 *binary++ = (nib << 4) | xtob(c);
97 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
103 _DIAGASSERT(binary != NULL);
119 nib = (u_int32_t)*binary >> 4;
121 nib = *binary++ & 0x0f;
  /prebuilts/go/darwin-x86/src/cmd/internal/sys/
arch.go 7 import "encoding/binary"
31 ByteOrder binary.ByteOrder
58 ByteOrder: binary.LittleEndian,
67 ByteOrder: binary.LittleEndian,
76 ByteOrder: binary.LittleEndian,
85 ByteOrder: binary.LittleEndian,
94 ByteOrder: binary.LittleEndian,
103 ByteOrder: binary.BigEndian,
112 ByteOrder: binary.LittleEndian,
121 ByteOrder: binary.BigEndian
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/sys/
arch.go 7 import "encoding/binary"
31 ByteOrder binary.ByteOrder
58 ByteOrder: binary.LittleEndian,
67 ByteOrder: binary.LittleEndian,
76 ByteOrder: binary.LittleEndian,
85 ByteOrder: binary.LittleEndian,
94 ByteOrder: binary.LittleEndian,
103 ByteOrder: binary.BigEndian,
112 ByteOrder: binary.LittleEndian,
121 ByteOrder: binary.BigEndian
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkSpirVAsm.cpp 21 * \brief SPIR-V assembly to binary.
61 spv_binary binary = DE_NULL; local
71 const spv_result_t compileOk = spvTextToBinary(context, spvSource.c_str(), spvSource.size(), &binary, &diagnostic);
80 DE_ASSERT(binary->wordCount > 0);
81 dst->resize(binary->wordCount);
82 std::copy(&binary->code[0], &binary->code[0] + binary->wordCount, dst->begin());
85 spvBinaryDestroy(binary);
93 spvBinaryDestroy(binary);
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/src/
spirv_tools_wrapper.cc 42 const std::vector<uint32_t>& binary,
50 binary, text_or_error, SPV_BINARY_TO_TEXT_OPTION_INDENT |
59 spv_binary* binary, std::string* errors) {
63 *binary = nullptr;
68 binary, &spvtools_diagnostic) == SPV_SUCCESS;
85 std::vector<uint32_t>* binary, std::string* errors) {
114 if (!optimizer.Run(binary->data(), binary->size(), binary)) {
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
nsap_addr.c 38 u_char *binary,
58 *binary++ = (nib << 4) | xtob(c);
75 register const u_char *binary,
95 nib = *binary >> 4;
97 nib = *binary++ & 0x0f;
  /external/autotest/client/cros/audio/
audio_data.py 63 def __init__(self, binary, channel, sample_format):
66 @param binary: A string containing binary data. If binary is not None,
67 The samples in binary will be parsed and be filled into
75 if binary:
76 self.read_binary(binary)
79 def read_binary(self, binary):
80 """Reads samples from binary and fills channel_data.
82 Reads samples of fixed width from binary string into a numpy arra
    [all...]
  /external/webrtc/talk/app/webrtc/
datachannelinterface.h 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
70 DataBuffer(const rtc::Buffer& data, bool binary)
72 binary(binary) {
77 binary(false) {
82 // Indicates if the received data contains UTF-8 or binary data.
85 bool binary; member in struct:webrtc::DataBuffer
146 // (UTF-8 text and binary data) that have been queued using SendBuffer but
  /tools/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/
audio_data.py 73 def __init__(self, binary, channel, sample_format):
77 binary: A string containing binary data. If binary is not None,
78 The samples in binary will be parsed and be filled into
86 if binary:
87 self.read_binary(binary)
89 def read_binary(self, binary):
90 """Reads samples from binary and fills channel_data.
92 Reads samples of fixed width from binary string into a numpy arra
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 51 def symbolize(self, addr, binary, offset):
52 """Symbolize the given address (pair of binary and offset).
57 binary: path to executable/shared object containing this instruction.
58 offset: instruction offset in the @binary.
95 def symbolize(self, addr, binary, offset):
101 symbolizer_input = '"%s" %s' % (binary, offset)
134 def __init__(self, binary):
136 self.binary = binary
147 cmd += ['-e', self.binary]
    [all...]
  /external/boringssl/src/ssl/test/runner/poly1305/
sum_ref.go 9 import "encoding/binary"
20 r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff)
21 r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03)
22 r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff)
23 r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff)
24 r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff)
30 h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff
31 h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
33 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3fffff
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_ref.go 9 import "encoding/binary"
20 r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff)
21 r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03)
22 r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff)
23 r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff)
24 r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff)
30 h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff
31 h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
33 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3fffff
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
sum_ref.go 9 import "encoding/binary"
20 r0 = uint64(binary.LittleEndian.Uint32(key[0:]) & 0x3ffffff)
21 r1 = uint64((binary.LittleEndian.Uint32(key[3:]) >> 2) & 0x3ffff03)
22 r2 = uint64((binary.LittleEndian.Uint32(key[6:]) >> 4) & 0x3ffc0ff)
23 r3 = uint64((binary.LittleEndian.Uint32(key[9:]) >> 6) & 0x3f03fff)
24 r4 = uint64((binary.LittleEndian.Uint32(key[12:]) >> 8) & 0x00fffff)
30 h0 += binary.LittleEndian.Uint32(msg[0:]) & 0x3ffffff
31 h1 += (binary.LittleEndian.Uint32(msg[3:]) >> 2) & 0x3ffffff
32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 0x3ffffff
33 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3fffff
    [all...]
  /external/flatbuffers/src/
util.cpp 26 bool LoadFileRaw(const char *name, bool binary, std::string *buf) {
28 std::ifstream ifs(name, binary ? std::ifstream::binary : std::ifstream::in);
30 if (binary) {
49 bool LoadFile(const char *name, bool binary, std::string *buf) {
51 return g_load_file_function(name, binary, buf);
  /external/autotest/client/site_tests/video_JpegDecodeAccelerator/
video_JpegDecodeAccelerator.py 13 This test is a wrapper of the chrome unittest binary:
23 binary = 'jpeg_decode_accelerator_unittest' variable in class:video_JpegDecodeAccelerator
42 self.run_chrome_test_binary(self.binary, cmd_line)
  /external/libcxx/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
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
parse-torture.sh 52 nerrs=`grep --binary-files=text '!!!' $file | tail -1 | awk '{for (i=NF-8;i<=NF;i++) sum+=$i; } END {print sum}'`
58 grep --binary-files=text 'torture:.*ver:' $file | grep --binary-files=text -v '(null)' | sed -e 's/^(initramfs)[^]]*] //' -e 's/^\[[^]]*] //' |
99 echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version messages
  /external/mesa3d/src/amd/common/
ac_binary.h 80 * Parse the elf binary stored in \p elf_data and create a
84 struct ac_shader_binary *binary);
86 void ac_shader_binary_read_config(struct ac_shader_binary *binary,
  /prebuilts/go/darwin-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
13 // to the IEEE 754 binary representation b.
16 // Float64bits returns the IEEE 754 binary representation of f.
20 // the IEEE 754 binary representation b.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11656.go 15 "encoding/binary"
55 binary.LittleEndian.PutUint16(ill, 0x0b0f) // ud2
57 binary.LittleEndian.PutUint32(ill, 0xe7f000f0) // no name, but permanently undefined
59 binary.LittleEndian.PutUint32(ill, 0xd4207d00) // brk #1000
61 binary.BigEndian.PutUint32(ill, 0x7fe00008) // trap
63 binary.LittleEndian.PutUint32(ill, 0x7fe00008) // trap
65 binary.BigEndian.PutUint32(ill, 0x00000034) // trap
67 binary.LittleEndian.PutUint32(ill, 0x00000034) // trap
69 binary.BigEndian.PutUint32(ill, 0) // undefined instruction
  /prebuilts/go/linux-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
13 // to the IEEE 754 binary representation b.
16 // Float64bits returns the IEEE 754 binary representation of f.
20 // the IEEE 754 binary representation b.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11656.go 15 "encoding/binary"
55 binary.LittleEndian.PutUint16(ill, 0x0b0f) // ud2
57 binary.LittleEndian.PutUint32(ill, 0xe7f000f0) // no name, but permanently undefined
59 binary.LittleEndian.PutUint32(ill, 0xd4207d00) // brk #1000
61 binary.BigEndian.PutUint32(ill, 0x7fe00008) // trap
63 binary.LittleEndian.PutUint32(ill, 0x7fe00008) // trap
65 binary.BigEndian.PutUint32(ill, 0x00000034) // trap
67 binary.LittleEndian.PutUint32(ill, 0x00000034) // trap
69 binary.BigEndian.PutUint32(ill, 0) // undefined instruction

Completed in 524 milliseconds

1 23 4 5 6 7 8 91011>>