HomeSort by relevance Sort by last modified time
    Searched defs:binary (Results 26 - 50 of 241) sorted by null

12 3 4 5 6 7 8 910

  /external/curl/lib/
openldap.c 448 int binary = 0, msgtype; local
509 if(bv.bv_len > 7 && !strncmp(bv.bv_val + bv.bv_len - 7, ";binary", 7))
510 binary = 1;
512 binary = 0;
530 if(!binary) {
545 if(binary || binval) {
548 /* Binary value, encode to base64. */
  /external/dbus/dbus/
dbus-internals.c 707 DBusString binary; local
708 _dbus_string_init_const_len (&binary, uuid->as_bytes, DBUS_UUID_LENGTH_BYTES);
709 return _dbus_string_hex_encode (&binary, 0, encoded, _dbus_string_get_length (encoded));
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderCase.cpp 342 const ProgramBinary& binary = m_context.getBinaryCollection().get("compute"); local
343 Unique<VkShaderModule> module (createShaderModule(vkdi, device, binary, (VkShaderModuleCreateFlags)0u));
  /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
  /external/iptables/iptables/
ip6tables-restore.c 29 static int binary = 0, counters = 0, verbose = 0, noflush = 0, wait = 0; variable
33 {.name = "binary", .has_arg = false, .val = 'b'},
50 " [ --binary ]\n"
213 binary = 1;
iptables-restore.c 26 static int binary = 0, counters = 0, verbose = 0, noflush = 0, wait = 0; variable
30 {.name = "binary", .has_arg = false, .val = 'b'},
49 " [ --binary ]\n"
213 binary = 1;
  /external/mesa3d/src/mesa/program/
prog_print.c 973 * Return binary representation of 64-bit value (as a string).
980 binary(GLbitfield64 val) function
1008 (uint64_t) prog->InputsRead, binary(prog->InputsRead));
1010 (uint64_t) prog->OutputsWritten, binary(prog->OutputsWritten));
1017 prog->IndirectRegisterFiles, binary(prog->IndirectRegisterFiles));
1019 prog->SamplersUsed, binary(prog->SamplersUsed));
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
Interpreter.java 60 String binary = data.get(BINARY); local
75 interpreter.setBinary(new File(binary));
118 protected void setBinary(File binary) {
119 if (!binary.exists()) {
120 throw new RuntimeException("Binary " + binary + " does not exist!");
122 mBinary = binary;
  /external/webrtc/talk/app/webrtc/
datachannel.cc 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
382 bool binary = (params.type == cricket::DMT_BINARY); local
383 rtc::scoped_ptr<DataBuffer> buffer(new DataBuffer(payload, binary));
562 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT;
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_unittest.cc 27 // Length of binary spectrum sequence.
79 // Construct a sequence of binary spectra used to verify delay estimate. The
127 // Initialize Binary Delay Estimator (far-end part).
129 // Initialize Binary Delay Estimator
474 // In this test we verify correct output on invalid API calls to the Binary
477 BinaryDelayEstimatorFarend* binary = binary_farend_; local
483 binary = WebRtc_CreateBinaryDelayEstimatorFarend(1);
484 EXPECT_TRUE(binary == NULL);
488 // In this test we verify correct output on invalid API calls to the Binary
526 // the signal accordingly. We create two Binary Delay Estimators and feed the
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 74 const ios_base::openmode ios_base::binary; member in class:ios_base
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.h 10 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
86 bool binary; member in struct:file
  /system/extras/simpleperf/
read_elf.cpp 35 #include <llvm/Object/Binary.h>
139 llvm::object::OwningBinary<llvm::object::Binary> binary; member in struct:BinaryRet
170 << "] is not a binary file: " << binary_or_err.getError().message();
173 ret.binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()),
175 ret.obj = llvm::dyn_cast<llvm::object::ObjectFile>(ret.binary.getBinary());
  /external/libcxx/src/
ios.cpp 122 const ios_base::openmode ios_base::binary; member in class:ios_base
  /external/selinux/checkpolicy/
checkpolicy.c 41 * and then compiled into a binary format for use by
44 * reads the binary format instead.
47 * writes the binary format version of the configuration
55 * determine which policy version to use for generating binary
391 unsigned int binary = 0, debug = 0, cil = 0; local
408 {"binary", no_argument, NULL, 'b'},
435 binary = 1;
513 if (binary) {
625 ("%s: writing binary representation (version %d) to %s\n",
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 18 package org.apache.commons.codec.binary;
446 * byte[] array of binary data to base64 encode.
635 * Encodes binary data using the base64 algorithm but does not chunk the output.
638 * binary data to encode
646 * Encodes binary data using the base64 algorithm into 76 character blocks separated by CRLF.
649 * binary data to encode
658 * Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. The
662 * binary data to encode
671 * Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. The
675 * binary data to encod
    [all...]
  /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), '|');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
ios.cpp 118 const ios_base::openmode ios_base::binary; member in class:ios_base
  /toolchain/binutils/binutils-2.25/ld/
ldexp.h 58 } binary; member in union:etree_union
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.6.0-alpha1/
gradle-experimental-0.6.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.6.0-alpha3/
gradle-experimental-0.6.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/1.2.4/
gradle-experimental-1.2.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.4.0/
gradle-experimental-0.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.6.0/
gradle-experimental-0.6.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/0.6.0-beta5/
gradle-experimental-0.6.0-beta5.jar 

Completed in 1381 milliseconds

12 3 4 5 6 7 8 910