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

<<31323334353637383940>>

  /prebuilts/go/linux-x86/src/cmd/trace/
main.go 34 Go 1.7 does not require the binary argument.
58 // The binary file name, left here for serveSVGProfile.
70 // Go 1.7 traces embed symbol info and does not require the binary.
71 // But we optionally accept binary as first arg for Go 1.5 traces.
  /prebuilts/go/linux-x86/src/crypto/des/
block.go 7 import "encoding/binary"
10 b := binary.BigEndian.Uint64(src)
32 binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
223 key := binary.BigEndian.Uint64(keyBytes)
  /prebuilts/go/linux-x86/src/go/build/
doc.go 145 // Binary-Only Packages
147 // It is possible to distribute packages in binary form without including the
150 // containing a "//go:binary-only-package" comment.
157 // The minimal source code for a binary-only package is therefore:
159 // //go:binary-only-package
  /prebuilts/go/linux-x86/src/math/big/
floatconv.go 88 // determine binary or decimal exponent contribution of decimal point
241 // A "p" exponent indicates a binary (rather then decimal) exponent;
244 // be binary, if present (an "e" or "E" exponent indicator cannot be
287 // 'b' (binary), 'e', 'E', 'f', 'F', 'g' and 'G'.
floatconv_test.go 82 // decimal mantissa, binary exponent
92 // binary mantissa, decimal exponent
103 // binary mantissa, binary exponent
  /prebuilts/go/linux-x86/src/os/exec/
lp_plan9.go 28 // LookPath searches for an executable binary named file
lp_unix.go 30 // LookPath searches for an executable binary named file
  /prebuilts/go/linux-x86/test/bench/go1/
binarytree_test.go 6 // performance by generating and discarding large binary trees.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 13 Quoted-printable is very space-inefficient for encoding binary files; use the
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
184 If binary is False (the default), end-of-line characters will be converted
200 if not binary:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 13 Quoted-printable is very space-inefficient for encoding binary files; use the
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
184 If binary is False (the default), end-of-line characters will be converted
200 if not binary:
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/js/
js_generator.h 5 // Redistribution and use in source and binary forms, with or without
11 // * Redistributions in binary form must reproduce the above
68 // Enable binary-format support?
69 bool binary; member in struct:google::protobuf::compiler::js::GeneratorOptions
85 binary(false),
  /toolchain/binutils/binutils-2.27/bfd/
makefile.vms 40 binary.obj,cache.obj,coffgen.obj,compress.obj,corefile.obj,dwarf2.obj,\
  /external/curl/lib/
openldap.c 477 int binary = 0, msgtype; local
545 if(bv.bv_len > 7 && !strncmp(bv.bv_val + bv.bv_len - 7, ";binary", 7))
546 binary = 1;
548 binary = 0;
572 if(!binary) {
587 if(binary || binval) {
590 /* Binary value, encode to base64. */
  /external/mesa3d/src/mesa/program/
prog_print.c 826 * Return binary representation of 64-bit value (as a string).
833 binary(GLbitfield64 val) function
861 (uint64_t) prog->info.inputs_read, binary(prog->info.inputs_read));
864 binary(prog->info.outputs_written));
872 binary(prog->arb.IndirectRegisterFiles));
874 prog->SamplersUsed, binary(prog->SamplersUsed));
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
SafeRepresenter.java 116 tag = Tag.BINARY;
117 char[] binary; local
119 binary = Base64Coder.encode(value.getBytes("UTF-8"));
123 value = String.valueOf(binary);
408 char[] binary = Base64Coder.encode((byte[]) data); local
409 return representScalar(Tag.BINARY, String.valueOf(binary), '|');
  /prebuilts/go/darwin-x86/src/cmd/go/
alldocs.go 206 // archive or binary (what 'go install' would create).
611 // BinaryOnly bool // binary-only package: cannot be recompiled from sources
710 // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
711 // If the -exec flag is given, 'go run' invokes the binary using xprog:
715 // on the current search path, 'go run' invokes the binary using that program,
729 // go test [build/test flags] [packages] [build/test flags & test binary flags]
745 // Each listed package causes the execution of a separate test binary.
749 // separate package, and then linked and run with the main test binary.
754 // As part of building a test binary, go test runs go vet on the package
756 // finds any problems, go test reports those and does not run the test binary
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
alldocs.go 206 // archive or binary (what 'go install' would create).
611 // BinaryOnly bool // binary-only package: cannot be recompiled from sources
710 // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
711 // If the -exec flag is given, 'go run' invokes the binary using xprog:
715 // on the current search path, 'go run' invokes the binary using that program,
729 // go test [build/test flags] [packages] [build/test flags & test binary flags]
745 // Each listed package causes the execution of a separate test binary.
749 // separate package, and then linked and run with the main test binary.
754 // As part of building a test binary, go test runs go vet on the package
756 // finds any problems, go test reports those and does not run the test binary
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
text.cpp 30 #include "binary.h"
175 /// @brief Translate an Opcode operand to binary form
181 /// @param[out] pInst return binary Opcode
472 /// @brief Translate single Opcode and operands to binary form
477 /// @param[out] pInst returned binary Opcode
647 // Populates a binary stream's |header|. The target environment is specified via
694 // Translates a given assembly language module into binary form.
701 // The ids in this set will have the same values both in source and binary.
754 spv_binary binary = new spv_binary_t();
755 if (!binary) {
    [all...]
  /system/extras/simpleperf/
read_elf.cpp 35 #include <llvm/Object/Binary.h>
170 llvm::object::OwningBinary<llvm::object::Binary> binary; member in struct:BinaryWrapper
197 wrapper->binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()),
199 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.getBinary());
212 wrapper->binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()),
214 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.getBinary());
  /toolchain/binutils/binutils-2.27/libiberty/
pex-unix.c 345 int binary ATTRIBUTE_UNUSED)
354 int binary ATTRIBUTE_UNUSED, int append)
752 int binary ATTRIBUTE_UNUSED)
761 int binary ATTRIBUTE_UNUSED)
768 int binary ATTRIBUTE_UNUSED)
  /external/boringssl/src/util/
run_android_tests.go 33 adbPath = flag.String("adb", "adb", "Specifies the adb binary to use. Defaults to looking in PATH.")
272 for _, binary := range binaries {
273 if err := copyFile(filepath.Join(tmpDir, "build", binary), filepath.Join(*buildDir, binary)); err != nil {
274 fmt.Printf("Failed to copy %s: %s\n", binary, err)
  /prebuilts/go/darwin-x86/src/archive/tar/
strconv.go 85 // If operating in binary mode, this assumes strict GNU binary mode; which means
97 // Check for base-256 (binary) format first.
138 // Otherwise it will attempt to use base-256 (binary) encoding.
150 b[0] |= 0x80 // Highest bit indicates binary format
  /prebuilts/go/linux-x86/src/archive/tar/
strconv.go 85 // If operating in binary mode, this assumes strict GNU binary mode; which means
97 // Check for base-256 (binary) format first.
138 // Otherwise it will attempt to use base-256 (binary) encoding.
150 b[0] |= 0x80 // Highest bit indicates binary format
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.8.0-alpha1/
gradle-experimental-0.8.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.8.0-alpha3/
gradle-experimental-0.8.0-alpha3.jar 

Completed in 1452 milliseconds

<<31323334353637383940>>