/external/chromium_org/third_party/icu/source/common/unicode/ |
bytestream.h | 7 // Abstract interface that consumes a sequence of bytes (ByteSink). 35 * \brief C++ API: Interface for writing bytes, and implementation classes. 45 * A ByteSink can be filled with bytes. 62 * Append "bytes[0,n-1]" to this. 63 * @param bytes the pointer to the bytes 64 * @param n the number of bytes; must be non-negative 67 virtual void Append(const char* bytes, int32_t n) = 0; 77 * After writing at most *result_capacity bytes, call Append() with the 78 * pointer returned from this function and the number of bytes written [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
util_unittest.cc | 14 void XmppTestHandler::WriteOutput(const char * bytes, size_t len) { 15 output_ << std::string(bytes, len);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_dump.c | 449 trace_dump_writes("<bytes>"); 457 trace_dump_writes("</bytes>");
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
glX_doc.py | 212 bytes = int(s) 213 bytes = 4 - (bytes & 3) 214 print ' %-8u %-15s unused' % (bytes, "") 227 bytes = int(s) 228 bytes = 4 - (bytes & 3) 229 print ' %-8u %-15s unused' % (bytes, "")
|
/external/chromium_org/third_party/skia/include/core/ |
SkGraphics.h | 36 * Return the max number of bytes that should be used by the font cache. 43 * Specify the max number of bytes that should be used by the font cache. 49 static size_t SetFontCacheLimit(size_t bytes); 52 * Return the number of bytes currently used by the font cache. 154 * Return the max number of bytes that should be used by the thread-local 167 * Specify the max number of bytes that should be used by the thread-local 171 static void SetTLSFontCacheLimit(size_t bytes);
|
/external/chromium_org/third_party/skia/src/lazy/ |
SkDiscardableMemoryPool.cpp | 35 virtual SkDiscardableMemory* create(size_t bytes) SK_OVERRIDE; 81 void* pointer, size_t bytes); 97 size_t bytes) 101 , fBytes(bytes) { 176 SkDiscardableMemory* DiscardableMemoryPool::create(size_t bytes) { 177 void* addr = sk_malloc_flags(bytes, 0); 182 (this, addr, bytes)); 185 fUsed += bytes;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
type_profiler_map.cc | 53 void* TypeProfilerMalloc(size_t bytes) { 54 return LowLevelAlloc::AllocWithArena(bytes, g_type_profiler_map_memory);
|
/external/chromium_org/third_party/tlslite/tlslite/ |
mathtls.py | 24 bytes = bytearray(length) 32 return bytes 33 bytes[index] = c 35 return bytes 54 bytes = bytearray(length) 62 return bytes 63 bytes[index] = c 65 return bytes 122 # Repeat pad bytes 48 times for MD5; 40 times for other hash functions.
|
x509certchain.py | 74 tlsCert = TlsCertificate(self.x509List[0].bytes) 84 tlsCert = TlsCertificate(x509.bytes)
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
python_rsakey.py | 91 bytes = dePem(s, "PRIVATE KEY") 92 return Python_RSAKey._parsePKCS8(bytes) 94 bytes = dePem(s, "RSA PRIVATE KEY") 95 return Python_RSAKey._parseSSLeay(bytes) 100 def _parsePKCS8(bytes): 101 p = ASN1Parser(bytes) 120 def _parseSSLeay(bytes): 121 privateKeyP = ASN1Parser(bytes)
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/ |
receive_statistics.h | 55 size_t bytes, 83 size_t bytes,
|
/external/chromium_org/tools/ |
include_tracer.py | 196 bytes = Walk(set(), sys.argv[1], '', 0) 198 print float(bytes) / (1 << 20), "megabytes of chrome source"
|
/external/deqp/executor/ |
xeBatchResult.cpp | 40 void InfoLog::append (const deUint8* bytes, int numBytes) 45 deMemcpy(&m_data[oldSize], bytes, numBytes);
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
ConstantValueAttribute_info.java | 121 final UDataInputStream bytes) 126 m_value_index = bytes.readU2 ();
|
GenericAttribute_info.java | 89 final UDataInputStream bytes) 95 bytes.readFully (m_info);
|
/external/icu/icu4c/source/common/unicode/ |
bytestream.h | 7 // Abstract interface that consumes a sequence of bytes (ByteSink). 35 * \brief C++ API: Interface for writing bytes, and implementation classes. 45 * A ByteSink can be filled with bytes. 62 * Append "bytes[0,n-1]" to this. 63 * @param bytes the pointer to the bytes 64 * @param n the number of bytes; must be non-negative 67 virtual void Append(const char* bytes, int32_t n) = 0; 77 * After writing at most *result_capacity bytes, call Append() with the 78 * pointer returned from this function and the number of bytes written [all...] |
/external/libvterm/src/ |
encoding.c | 10 // number of bytes remaining in this codepoint 13 // number of bytes total in this codepoint once it's finished 30 const char bytes[], size_t *pos, size_t bytelen) 39 unsigned char c = bytes[*pos]; 156 const char bytes[], size_t *pos, size_t bytelen) 158 int is_gr = bytes[*pos] & 0x80; 161 unsigned char c = bytes[*pos] ^ is_gr; 181 const char bytes[], size_t *pos, size_t bytelen) 184 int is_gr = bytes[*pos] & 0x80; 187 unsigned char c = bytes[*pos] ^ is_gr [all...] |
/external/llvm/test/MC/X86/AlignedBundling/ |
single-inst-bundling.s | 19 # This imull is 3 bytes long and should have started at 0xe, so two bytes
|
/external/lzma/CPP/7zip/UI/Common/ |
ArchiveOpenCallback.h | 32 virtual HRESULT Open_SetTotal(const UInt64 *files, const UInt64 *bytes) x; \
33 virtual HRESULT Open_SetCompleted(const UInt64 *files, const UInt64 *bytes) x; \
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_dump.c | 449 trace_dump_writes("<bytes>"); 457 trace_dump_writes("</bytes>");
|
/external/mesa3d/src/mapi/glapi/gen/ |
glX_doc.py | 212 bytes = int(s) 213 bytes = 4 - (bytes & 3) 214 print ' %-8u %-15s unused' % (bytes, "") 227 bytes = int(s) 228 bytes = 4 - (bytes & 3) 229 print ' %-8u %-15s unused' % (bytes, "")
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/ |
ASN1Dump.java | 355 private static String dumpBinaryDataAsString(String indent, byte[] bytes) 363 for (int i = 0; i < bytes.length; i += SAMPLE_SIZE) 365 if (bytes.length - i > SAMPLE_SIZE) 368 buf.append(new String(Hex.encode(bytes, i, SAMPLE_SIZE))); 370 buf.append(calculateAscString(bytes, i, SAMPLE_SIZE)); 376 buf.append(new String(Hex.encode(bytes, i, bytes.length - i))); 377 for (int j = bytes.length - i; j != SAMPLE_SIZE; j++) 382 buf.append(calculateAscString(bytes, i, bytes.length - i)) [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
ClassPathOpener.java | 63 * @param bytes {@code non-null;} file data 68 boolean processFileBytes(String name, long lastModified, byte[] bytes); 169 byte[] bytes = FileUtils.readFile(file); 170 return consumer.processFileBytes(path, file.lastModified(), bytes); 283 byte[] bytes = baos.toByteArray(); 284 any |= consumer.processFileBytes(path, one.getTime(), bytes);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
CTarget.java | 196 String bytes; local 262 bytes = buf.toString(); 263 index = strings.indexOf(bytes); 266 strings.add(bytes); 267 index = strings.indexOf(bytes);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
Signature2Test.java | 192 byte[] bytes = MESSAGE.getBytes(); 193 sig.update(bytes); 203 byte[] bytes = MESSAGE.getBytes(); 204 sig.update(bytes, 0, bytes.length);
|