HomeSort by relevance Sort by last modified time
    Searched defs:binary (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/lldb/examples/customization/bin-utils/
binutils.py 5 def binary(n, width=None): function
7 Return a list of (0|1)'s for the binary representation of n where n >= 0.
27 Return a list of (0|1)'s for the binary representation of a width-bit two's
35 return binary(n, width)
41 return binary(val*2 - abs(n))
43 # print binary(0xABCD)
45 # print binary(0x1F, 8)
51 # print binary(7)
64 """Convert the unsigned integer to print its binary representation.
66 args[1] (optional) is the bit width of the binary representatio
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-loadable-module.py 24 # Binary.
25 binary = test.built_file_path( variable
28 test.must_exist(binary)
30 if struct.unpack('4I', open(binary, 'rb').read(16))[3] != MH_BUNDLE:
  /external/clang/tools/clang-format/
clang-format-diff.py 35 binary = 'clang-format' variable
92 command = [binary, filename]
clang-format-sublime.py 2 # - Change 'binary' if clang-format is not on the path (see below).
21 binary = 'clang-format' variable
35 command = [binary, '-style', style]
clang-format.py 2 # - Change 'binary' if clang-format is not on the path (see below).
27 binary = 'clang-format' variable
57 command = [binary, '-lines', lines, '-style', style, '-cursor', str(cursor)]
clang-format.el 14 ;; *Location of the clang-format binary. If it is on your PATH, a full path name
16 (defvar clang-format-binary "clang-format")
41 (call-process-region (point-min) (point-max) clang-format-binary
  /external/chromium_org/content/common/indexed_db/
indexed_db_param_traits.cc 40 WriteParam(m, p.binary());
78 std::string binary; local
79 if (!ReadParam(m, iter, &binary))
81 *r = IndexedDBKey(binary);
123 LogParam(p.binary(), l);
indexed_db_key.h 30 explicit IndexedDBKey(const std::string& binary);
46 const std::string& binary() const { return binary_; } function in class:content::IndexedDBKey
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
HLSLCompiler.cpp 82 ID3DBlob *binary = NULL; local
84 HRESULT result = compileFunc(hlsl, strlen(hlsl), gl::g_fakepath, NULL, NULL, "main", profile, optimizationFlags[i], 0, &binary, &errorMessage);
99 return (ShaderBlob*)binary;
  /external/chromium_org/tools/gn/
generate_test_gn_data.cc 89 std::ios_base::out | std::ios_base::binary); member in class:std::ios_base
ninja_toolchain_writer.cc 53 std::ios_base::out | std::ios_base::binary); member in class:std::ios_base
  /external/chromium_org/v8/test/mjsunit/regress/
regress-145201.js 2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
36 binary(operator, 1, false);
37 binary(operator, 1, true);
38 binary(operator, '{}', false);
39 binary(operator, '{}', true);
40 binary(operator, '"x"', false);
41 binary(operator, '"x"', true);
53 function binary(op, other_side, inverted) {
  /external/oprofile/daemon/
opd_mangling.c 145 char const * binary; local
183 binary = find_cookie(sf->cookie);
185 binary = sf->kernel->name;
197 binary ? op_get_mtime(binary) : 0);
  /external/chromium_org/ppapi/shared_impl/private/
ppb_x509_certificate_private_shared.cc 65 const base::BinaryValue* binary = local
67 uint32_t size = static_cast<uint32_t>(binary->GetSize());
68 const char* buffer = binary->GetBuffer();
  /external/oprofile/libpp/
profile_spec.h 123 std::string binary; member in class:profile_spec
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 17 package org.apache.commons.codec.binary;
73 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
76 * the raw binary data to convert
85 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
88 * the raw binary data to convert
106 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
132 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
144 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
164 * @return the raw encoded binary where each bit corresponds to a char in the char array argument
191 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argumen
    [all...]
Hex.java 17 package org.apache.commons.codec.binary;
49 * @return A byte array containing binary data decoded from
124 * @return A byte array containing binary data decoded from
142 * @return A byte array containing binary data decoded from
  /external/checkpolicy/
checkmodule.c 117 printf("%s: writing binary representation (version %d) to %s\n",
150 printf(" -b treat input as a binary policy file\n");
165 unsigned int binary = 0; local
172 {"binary", no_argument, NULL, 'b'},
188 binary = 1;
245 if (binary) {
  /external/chromium_org/chrome/test/chromedriver/
capabilities.h 85 base::FilePath binary; member in struct:Capabilities
  /external/chromium_org/remoting/host/
host_main.cc 75 " --elevate=<binary> - Runs <binary> elevated.\n"
87 // Runs the binary specified by the command line, elevated.
107 // Get the name of the binary to launch.
108 base::FilePath binary = local
119 info.lpFile = binary.value().c_str();
125 PLOG(ERROR) << "Unable to launch '" << binary.value() << "'";
  /external/chromium_org/third_party/angle/src/compiler/translator/
RewriteElseBlocks.cpp 25 TIntermBinary *binary = new TIntermBinary(op); local
26 binary->setLeft(left);
27 binary->setRight(right);
28 binary->setType(resultType);
29 return binary;
  /external/chromium_org/third_party/libjingle/source/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,
69 DataBuffer(const talk_base::Buffer& data, bool binary)
71 binary(binary) {
76 binary(false) {
81 // Indicates if the received data contains UTF-8 or binary data.
84 bool binary; member in struct:webrtc::DataBuffer
128 // (UTF-8 text and binary data) that have been queued using SendBuffer but
  /bootable/recovery/
install.cpp 39 #define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
48 // If the package contains an update binary, extract it and run it.
58 const char* binary = "/tmp/update_binary"; local
59 unlink(binary);
60 int fd = creat(binary, 0755);
63 LOGE("Can't make %s\n", binary);
78 // When executing the update binary contained in the package, the
113 args[0] = binary;
125 execv(binary, (char* const*)args);
126 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno))
    [all...]
  /external/chromium_org/ipc/
ipc_message_utils.cc 32 // Windows has a GUI for logging, which can handle arbitrary binary data.
97 const base::BinaryValue* binary = local
99 m->WriteData(binary->GetBuffer(), static_cast<int>(binary->GetSize()));
  /external/chromium_org/remoting/base/
breakpad_win.cc 146 HMODULE binary = base::GetModuleFromAddress( local
149 FileVersionInfo::CreateFileVersionInfoForModule(binary));

Completed in 3638 milliseconds

1 2 3 4 5 6