HomeSort by relevance Sort by last modified time
    Searched defs:raw_buffer (Results 1 - 9 of 9) sorted by null

  /external/libcxxabi/src/
cxa_exception.cpp 175 char *raw_buffer = local
177 if (NULL == raw_buffer)
180 static_cast<__cxa_exception *>((void *)(raw_buffer + header_offset));
190 char *raw_buffer = local
192 __aligned_free_with_fallback((void *)raw_buffer);
  /external/v8/src/compiler/
node.cc 14 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); local
16 reinterpret_cast<OutOfLineInputs*>(raw_buffer + capacity * sizeof(Use));
95 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); local
97 reinterpret_cast<void*>(raw_buffer + capacity * sizeof(Use));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.c 314 void* raw_buffer; local
405 if (PyObject_AsWriteBuffer(buffer, &raw_buffer, &nbytes)) {
408 memcpy(raw_buffer, sqlite3_column_blob(self->statement->st, i), nbytes);
    [all...]
connection.c 585 void* raw_buffer; local
618 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) {
623 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen);
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.c 302 void* raw_buffer; local
389 if (PyObject_AsWriteBuffer(buffer, &raw_buffer, &nbytes)) {
392 memcpy(raw_buffer, sqlite3_column_blob(self->statement->st, i), nbytes);
    [all...]
connection.c 594 void* raw_buffer; local
626 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) {
631 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen);
    [all...]
  /external/v8/src/heap/
gc-tracer.cc 388 char raw_buffer[kBufferSize]; local
389 Vector<char> buffer(raw_buffer, kBufferSize);
    [all...]
  /external/libvncserver/rfb/
rfbclient.h 233 char *raw_buffer; member in struct:_rfbClient
  /system/core/adb/
commandline.cpp 264 char raw_buffer[BUFSIZ]; local
265 char* buffer_ptr = raw_buffer;
297 length = adb_read(fd, raw_buffer, sizeof(raw_buffer));
486 char raw_buffer[BUFSIZ]; local
487 char* buffer_ptr = raw_buffer;
488 size_t buffer_size = sizeof(raw_buffer);
    [all...]

Completed in 218 milliseconds