Searched defs:bytes (Results 76 - 100 of 1230) sorted by relevance

1234567891011>>

/external/chromium_org/printing/
H A Dimage_win.cc81 size_t bytes = row_length_ * size_.height(); local
82 DCHECK(bytes);
84 data_.assign(bits, bits + bytes);
/external/chromium_org/remoting/host/win/
H A Dwts_terminal_monitor.cc35 DWORD bytes; local
41 &bytes)) {
46 (bytes / sizeof(wchar_t)) - 1,
/external/chromium_org/rlz/lib/
H A Dcrc8_unittest.cc30 unsigned char* bytes; local
35 bytes = reinterpret_cast<unsigned char*>(data[i].string);
41 rlz_lib::Crc8::Generate(bytes, length, &crc);
43 rlz_lib::Crc8::Verify(bytes, length, crc, &matches);
48 rlz_lib::Crc8::Verify(bytes, length, crc, &matches);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DCString.cpp92 char* bytes = result.m_buffer->mutableData(); local
93 bytes[length] = '\0';
94 characterBuffer = bytes;
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Ddes.h68 uint8_t bytes[8]; member in struct:DES_cblock_st
95 * single DES block (8 bytes) from in to out, using the key configured in
102 * bytes from |in| to |out| with DES in CBC mode. */
109 * bytes from |in| to |out| with 3DES in CBC mode. 3DES uses three keys, thus
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dbytestriebuilder.h57 * The bytes will be copied; the builder does not keep
176 char *bytes; member in class:BytesTrieBuilder
/external/chromium_org/third_party/leveldatabase/src/util/
H A Darena.cc24 char* Arena::AllocateFallback(size_t bytes) { argument
25 if (bytes > kBlockSize / 4) {
27 // to avoid wasting too much space in leftover bytes.
28 char* result = AllocateNewBlock(bytes);
37 alloc_ptr_ += bytes;
38 alloc_bytes_remaining_ -= bytes;
42 char* Arena::AllocateAligned(size_t bytes) { argument
47 size_t needed = bytes + slop;
55 result = AllocateFallback(bytes);
H A Darena.h20 // Return a pointer to a newly allocated memory block of "bytes" bytes.
21 char* Allocate(size_t bytes);
24 char* AllocateAligned(size_t bytes);
34 char* AllocateFallback(size_t bytes);
52 inline char* Arena::Allocate(size_t bytes) { argument
56 assert(bytes > 0);
57 if (bytes <= alloc_bytes_remaining_) {
59 alloc_ptr_ += bytes;
60 alloc_bytes_remaining_ -= bytes;
[all...]
H A Darena_test.cc22 size_t bytes = 0; local
47 bytes += s;
49 ASSERT_GE(arena.MemoryUsage(), bytes);
51 ASSERT_LE(arena.MemoryUsage(), bytes * 1.10);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dutil_unittest.cc14 void XmppTestHandler::WriteOutput(const char * bytes, size_t len) { argument
15 output_ << std::string(bytes, len);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dmemory_pool.c71 void * memory_pool_malloc(struct memory_pool * pool, unsigned int bytes) argument
73 if (bytes < POOL_LARGE_ALLOC) {
76 if (pool->head + bytes > pool->end)
79 assert(pool->head + bytes <= pool->end);
83 pool->head += bytes;
88 struct memory_block * block = (struct memory_block*)malloc(bytes + sizeof(struct memory_block));
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc27 ByteVector bytes; local
29 bytes.push_back(TEST_OTF_DATA[i]);
31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size());
/external/chromium_org/third_party/skia/experimental/DrawingBoard/
H A DSkNetPipeController.cpp38 void SkNetPipeController::notifyWritten(size_t bytes) { argument
39 SkASSERT(fBytesWritten + bytes <= fBlockSize);
42 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
46 fBytesWritten += bytes;
47 fTotalWritten += bytes;
/external/chromium_org/third_party/skia/src/utils/mac/
H A DSkStream_mac.cpp20 static size_t get_bytes_proc(void* info, void* buffer, size_t bytes) { argument
22 return ((SkStream*)info)->read(buffer, bytes);
25 static off_t skip_forward_proc(void* info, off_t bytes) { argument
26 return ((SkStream*)info)->skip((size_t) bytes);
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLRandom.java36 protected void engineNextBytes(byte[] bytes) { argument
38 NativeCrypto.RAND_bytes(bytes);
75 throw new SecurityException("Failed to read sufficient bytes from /dev/urandom."
/external/dhcpcd/
H A Dsignals.c70 ssize_t bytes; local
73 bytes = read(signal_pipe[0], buf, sizeof(buf));
74 if (bytes >= 0 && (size_t)bytes >= sizeof(sig))
/external/elfutils/0.153/libcpu/
H A Di386_parse.y101 struct bitvalue *bytes;
188 static void fillin_arg (struct bitvalue *bytes, struct argname *name,
235 %type <bit> bit byte bytes
283 instr: bytes ':' bitfieldopt kID bitfieldopt optargs
305 newp->bytes = $1;
388 bytes: bytes ',' byte label
770 fillin_arg (struct bitvalue *bytes, struct argname *name,
820 struct bitvalue *b = bytes;
1249 /* First count the number of bytes
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_next_cfi.c84 const uint8_t *bytes = data->d_buf + off; local
90 uint64_t length = read_4ubyte_unaligned_inc (&dw, bytes);
96 if (unlikely (limit - bytes < 8))
102 length = read_8ubyte_unaligned_inc (&dw, bytes);
104 if (unlikely ((uint64_t) (limit - bytes) < length)
114 limit = bytes + length;
116 const uint8_t *const cie_pointer_start = bytes;
118 entry->cie.CIE_id = read_8ubyte_unaligned_inc (&dw, bytes);
121 entry->cie.CIE_id = read_4ubyte_unaligned_inc (&dw, bytes);
146 uint8_t version = *bytes
[all...]
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoadHook.java54 final byte [] bytes, final int length,
61 $assert.ASSERT (bytes != null, "bytes is null");
62 $assert.ASSERT (bytes != null, "out is null");
68 final ClassDef clsDef = ClassDefParser.parseClass (bytes, length);
53 processClassDef(final String className, final byte [] bytes, final int length, ByteArrayOStream out) argument
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DLineNumber_info.java87 LineNumber_info (final UDataInputStream bytes) throws IOException argument
89 m_start_pc = bytes.readU2 ();
90 m_line_number = bytes.readU2 ();
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Fieldref_info.java63 protected CONSTANT_Fieldref_info (final UDataInputStream bytes) throws IOException argument
65 super (bytes);
H A DCONSTANT_InterfaceMethodref_info.java62 protected CONSTANT_InterfaceMethodref_info (final UDataInputStream bytes) throws IOException argument
64 super (bytes);
H A DCONSTANT_Methodref_info.java63 protected CONSTANT_Methodref_info (final UDataInputStream bytes) throws IOException argument
65 super (bytes);
H A DCONSTANT_ref_info.java62 protected CONSTANT_ref_info (final UDataInputStream bytes) argument
65 m_class_index = bytes.readU2 ();
66 m_name_and_type_index = bytes.readU2 ();
/external/fio/os/
H A Dos-aix.h29 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) argument
34 *bytes = (unsigned long long)info.un.scdk.numblks *

Completed in 1625 milliseconds

1234567891011>>