Searched defs:binary (Results 1 - 25 of 99) sorted by relevance

1234

/external/lldb/examples/customization/bin-utils/
H A Dbinutils.py5 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/remoting/host/
H A Dipc_constants.cc21 bool GetInstalledBinaryPath(const base::FilePath::StringType& binary, argument
29 base::FilePath path = dir_path.Append(binary);
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-loadable-module.py25 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/
H A Dclang-format-diff.py35 binary = 'clang-format' variable
92 command = [binary, filename]
H A Dclang-format-sublime.py2 # - Change 'binary' if clang-format is not on the path (see below).
21 binary = 'clang-format' variable
35 command = [binary, '-style', style]
H A Dclang-format.py2 # - 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)]
H A Dclang-format.el14 ;; *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/
H A Dindexed_db_param_traits.cc40 WriteParam(m, p.binary());
78 std::string binary; local
79 if (!ReadParam(m, iter, &binary))
81 *r = IndexedDBKey(binary);
123 LogParam(p.binary(), l);
H A Dindexed_db_key.h30 explicit IndexedDBKey(const std::string& binary);
43 const std::string& binary() const { return binary_; } function in class:content::IndexedDBKey
H A Dindexed_db_key.cc83 IndexedDBKey::IndexedDBKey(const std::string& binary) argument
85 binary_(binary),
87 (binary.length() * sizeof(std::string::value_type))) {}
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-145201.js2 // 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/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java17 package org.apache.commons.codec.binary;
54 * @return A byte array containing binary data decoded from
129 * @return A byte array containing binary data decoded from
147 * @return A byte array containing binary data decoded from
H A DBinaryCodec.java17 package org.apache.commons.codec.binary;
78 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
81 * the raw binary data to convert
90 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
93 * the raw binary data to convert
111 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
137 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
149 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
169 * @return the raw encoded binary where each bit corresponds to a char in the char array argument
196 * @return the raw encoded binary wher
[all...]
H A DBase64.java17 package org.apache.commons.codec.binary;
176 * Encodes binary data using the base64 algorithm but
179 * @param binaryData binary data to encode
187 * Encodes binary data using the base64 algorithm and chunks
190 * @param binaryData binary data to encode
206 * binary data which corresponds to the byte[] supplied.
222 * @return a byte array containing binary data
229 * Encodes binary data using the base64 algorithm, optionally
232 * @param binaryData Array containing binary data to encode.
519 * Encodes a byte[] containing binary dat
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DHLSLCompiler.cpp87 ID3DBlob *binary = NULL; local
89 HRESULT result = compileFunc(hlsl, strlen(hlsl), gl::g_fakepath, NULL, NULL, "main", profile, optimizationFlags[i], 0, &binary, &errorMessage);
104 return (ShaderBlob*)binary;
/external/oprofile/daemon/
H A Dopd_mangling.c145 char const * binary; local
183 binary = find_cookie(sf->cookie);
185 binary = sf->kernel->name;
197 binary ? op_get_mtime(binary) : 0);
/external/oprofile/libpp/
H A Dprofile_spec.h123 std::string binary; member in class:profile_spec
/external/chromium_org/extensions/browser/api/declarative/
H A Ddeclarative_api.cc58 // Encodes |binary| as base64 and returns a new StringValue populated with the
60 scoped_ptr<base::StringValue> ConvertBinaryToBase64(base::BinaryValue* binary) { argument
61 std::string binary_data = std::string(binary->GetBuffer(), binary->GetSize());
75 base::BinaryValue* binary = NULL; local
76 if (args->GetBinary(index, &binary))
77 args->Set(index, ConvertBinaryToBase64(binary).release());
97 base::BinaryValue* binary = NULL; local
98 if (dict->GetBinary(iter.key(), &binary))
99 dict->Set(iter.key(), ConvertBinaryToBase64(binary)
[all...]
/external/chromium_org/ppapi/shared_impl/private/
H A Dppb_x509_certificate_private_shared.cc65 const base::BinaryValue* binary = local
67 uint32_t size = static_cast<uint32_t>(binary->GetSize());
68 const char* buffer = binary->GetBuffer();
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddatachannelinterface.h5 * 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 rtc::Buffer& data, bool binary) argument
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
/external/chromium_org/tools/gn/
H A Dgenerate_test_gn_data.cc89 std::ios_base::out | std::ios_base::binary); member in class:std::ios_base
H A Dninja_toolchain_writer.cc59 std::ios_base::out | std::ios_base::binary); member in class:std::ios_base
/external/checkpolicy/
H A Dcheckmodule.c117 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/
H A Dcapabilities.h107 base::FilePath binary; member in struct:Capabilities
/external/chromium_org/remoting/base/
H A Dbreakpad_win.cc146 HMODULE binary = base::GetModuleFromAddress( local
149 FileVersionInfo::CreateFileVersionInfoForModule(binary));

Completed in 786 milliseconds

1234