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

1 2 3 4 5 6 7

  /external/google-breakpad/src/tools/solaris/dump_syms/
dump_syms.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
41 fprintf(stderr, "Usage: %s <binary-with-stab-symbol>\n", argv[0]);
45 const char *binary = argv[1]; local
48 if (!dumper.WriteSymbolFile(binary, fileno(stdout))) {
  /external/google-breakpad/src/tools/linux/dump_syms/
dump_syms.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
42 fprintf(stderr, "Usage: %s [OPTION] <binary-with-debugging-info> "
71 const char* binary; local
73 binary = argv[arg_index];
82 if (!WriteSymbolFile(binary, debug_dirs, options, std::cout)) {
  /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/clang/tools/clang-format/
clang-format-diff.py 35 binary = 'clang-format' variable
96 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).
28 binary = 'clang-format' variable
30 binary = vim.eval('g:clang_format_path') variable
62 command = [binary, '-lines', lines, '-style', style, '-cursor', str(cursor)]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryClassObject.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryIdContentPair.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
ByteUtils.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryClassField.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryOutputCapsule.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
  /system/extras/simpleperf/
record_test.cpp 40 std::vector<char> binary = record.BinaryFormat(); local
42 ReadRecordFromBuffer(event_attr, reinterpret_cast<const perf_event_header*>(binary.data()));
read_elf.cpp 29 #include <llvm/Object/Binary.h>
102 llvm::object::Binary* binary = owning_binary.get().getBinary(); local
103 if (auto obj = llvm::dyn_cast<llvm::object::ObjectFile>(binary)) {
  /external/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/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 17 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 where each bit corresponds to a byte in the byte array argumen
    [all...]
Hex.java 17 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
Base64.java 17 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 data, into a byte[] containin
    [all...]
  /external/selinux/checkpolicy/
checkmodule.c 134 printf(" -b treat input as a binary policy file\n");
135 printf(" -C output CIL policy instead of binary policy\n");
150 unsigned int binary = 0, cil = 0; local
157 {"binary", no_argument, NULL, 'b'},
174 binary = 1;
220 if (binary && (policy_type != POLICY_BASE)) {
238 if (binary) {
296 printf("%s: writing binary representation (version %d) to %s\n",
  /bootable/recovery/
install.cpp 40 #define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
49 // If the package contains an update binary, extract it and run it.
59 const char* binary = "/tmp/update_binary"; local
60 unlink(binary);
61 int fd = creat(binary, 0755);
64 LOGE("Can't make %s\n", binary);
79 // When executing the update binary contained in the package, the
126 args[0] = binary;
138 execv(binary, (char* const*)args);
139 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno))
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationLoader.java 199 UResourceBundle binary = data.get("%%CollationBin"); local
200 ByteBuffer inBytes = binary.getBinary();
  /external/selinux/secilc/
secilc.c 4 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
49 printf(" -o, --output=<file> write binary policy to <file>\n");
58 printf(" -c, --policyvers=<version> build a binary policy with a given <version>\n");
64 printf(" -D, --disable-dontaudit do not add dontaudit rules to the binary policy\n");
77 FILE *binary = NULL; local
274 binary = fopen(output, "w");
275 if (binary == NULL) {
276 fprintf(stderr, "Failure opening binary file for writing\n");
287 sepol_policy_file_set_fp(pf, binary);
    [all...]
  /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 28 static int binary = 0, counters = 0, verbose = 0, noflush = 0; variable
32 {.name = "binary", .has_arg = false, .val = 'b'},
48 " [ --binary ]\n"
210 binary = 1;
iptables-restore.c 25 static int binary = 0, counters = 0, verbose = 0, noflush = 0; variable
29 {.name = "binary", .has_arg = false, .val = 'b'},
47 " [ --binary ]\n"
210 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...]

Completed in 656 milliseconds

1 2 3 4 5 6 7