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

<<31323334353637383940>>

  /prebuilts/go/darwin-x86/src/encoding/binary/
binary.go 5 // Package binary implements simple translation between numbers and byte
22 package binary package
95 func (littleEndian) GoString() string { return "binary.LittleEndian" }
143 func (bigEndian) GoString() string { return "binary.BigEndian" }
145 // Read reads structured binary data from r into data.
242 return errors.New("binary.Read: invalid type " + reflect.TypeOf(data).String())
252 // Write writes the binary representation of data into w.
362 return errors.New("binary.Write: invalid type " + reflect.TypeOf(data).String())
varint.go 5 package binary package
103 var overflow = errors.New("binary: varint overflows a 64-bit integer")
  /prebuilts/go/darwin-x86/src/go/token/
token.go 255 // Precedence returns the operator precedence of the binary
256 // operator op. If op is not a binary operator, the result
  /prebuilts/go/darwin-x86/src/math/big/
doc.go 42 func (z *T) Binary(x, y *T) *T // z = x binary y
45 with T one of Int, Rat, or Float. For unary and binary operations, the
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
writer_test.go 22 func testWriter(t *testing.T, binary bool) {
98 if binary {
99 w.Binary = true
  /prebuilts/go/darwin-x86/src/sort/
search.go 5 // This file implements binary search.
9 // Search uses binary search to find and return the smallest index i
  /prebuilts/go/linux-x86/src/cmd/go/internal/cmdflag/
flag.go 20 // our command line are for us, and some are for the binary we're running,
28 PassToTest bool // Pass to the test binary? Used only by go test.
  /prebuilts/go/linux-x86/src/encoding/binary/
binary.go 5 // Package binary implements simple translation between numbers and byte
22 package binary package
95 func (littleEndian) GoString() string { return "binary.LittleEndian" }
143 func (bigEndian) GoString() string { return "binary.BigEndian" }
145 // Read reads structured binary data from r into data.
242 return errors.New("binary.Read: invalid type " + reflect.TypeOf(data).String())
252 // Write writes the binary representation of data into w.
362 return errors.New("binary.Write: invalid type " + reflect.TypeOf(data).String())
varint.go 5 package binary package
103 var overflow = errors.New("binary: varint overflows a 64-bit integer")
  /prebuilts/go/linux-x86/src/go/token/
token.go 255 // Precedence returns the operator precedence of the binary
256 // operator op. If op is not a binary operator, the result
  /prebuilts/go/linux-x86/src/math/big/
doc.go 42 func (z *T) Binary(x, y *T) *T // z = x binary y
45 with T one of Int, Rat, or Float. For unary and binary operations, the
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
writer_test.go 22 func testWriter(t *testing.T, binary bool) {
98 if binary {
99 w.Binary = true
  /prebuilts/go/linux-x86/src/sort/
search.go 5 // This file implements binary search.
9 // Search uses binary search to find and return the smallest index i
  /prebuilts/ndk/r16/sources/third_party/googletest/
Android.mk 3 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
file.c 11 * Redistribution and use in source and binary forms, with or without
16 * 2. Redistributions in binary form must reproduce the above copyright
221 /* Check for binary stuff, if necessary */
224 f->binary = true;
  /system/tools/aidl/
io_delegate.cpp 87 std::ifstream in(filename, std::ios::in | std::ios::binary);
  /test/vti/dashboard/src/main/java/com/android/vts/api/
BigtableLegacyJsonServlet.java 34 import org.apache.commons.codec.binary.Base64;
  /toolchain/binutils/binutils-2.27/libiberty/
pex-msdos.c 102 /* Open a file. FIXME: We ignore the binary argument, since we have
107 int binary ATTRIBUTE_UNUSED)
  /build/soong/python/
python_test.go 408 `binary "%s" variant "%s" has unexpected pyRunfiles: %q!`,
416 `binary "%s" variant "%s" has unexpected depsPyRunfiles: %q!`,
424 `binary "%s" variant "%s" has unexpected parSpec: %q!`,
438 `binary "%s" variant "%s" has unexpected depsParSpecs: %q!`,
  /device/google/contexthub/firmware/app/
app.mk 27 path to the toolchain directory plus the binary prefix, e.g. export \
230 $(OBJCOPY) -j.relocs -j.flash -j.data -j.dynsym -O binary $< $@
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
bootsect.asm 14 ;* bootsect.asm is built as 16-bit binary file in 512 bytes and patched to disk/partition's
23 ;* 3, boot sector code simply parse FAT format in boot disk and find EfiLdr binary file
25 ;* 4, boot sector load the first sector of EfiLdr binary which is start.com to
27 ;* 5, boot sector handoff control to 0x2000:0x0000 for start.com binary.
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 10 Redistribution and use in source and binary forms, with or without
16 2. Redistributions in binary form must reproduce the above copyright
  /external/autotest/client/cros/audio/
audio_analysis_unittest.py 114 binary = open(file_path, 'r').read()
115 data = audio_data.AudioRawData(binary, 2, 'S32_LE')
  /external/autotest/client/cros/multimedia/
audio_facade_native.py 47 binary = f.read()
50 np_array = np.fromstring(binary, dtype='<i2')
  /external/google-breakpad/src/common/windows/
http_upload.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
296 // Now append the upload file as a binary (octet-stream) part
334 file.open(filename.c_str(), ios::binary);
336 ifstream file(WideToMBCP(filename, CP_ACP).c_str(), ios::binary); member in class:google_breakpad::ios

Completed in 760 milliseconds

<<31323334353637383940>>