Searched refs:raw_buffer (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/lite/ |
D | string_util.cc | 120 int GetStringCount(const char* raw_buffer) { in GetStringCount() argument 122 return *GetIntPtr(raw_buffer); in GetStringCount() 130 StringRef GetString(const char* raw_buffer, int string_index) { in GetString() argument 132 GetIntPtr(raw_buffer + sizeof(int32_t) * (string_index + 1)); in GetString() 134 raw_buffer + (*offset), in GetString()
|
D | string_util.h | 94 int GetStringCount(const char* raw_buffer); 99 StringRef GetString(const char* raw_buffer, int string_index);
|
/external/tensorflow/tensorflow/contrib/lite/ |
D | string_util.h | 88 int GetStringCount(const char* raw_buffer); 93 StringRef GetString(const char* raw_buffer, int string_index);
|
/external/libcxxabi/src/ |
D | cxa_exception.cpp | 191 char *raw_buffer = in __cxa_allocate_exception() local 193 if (NULL == raw_buffer) in __cxa_allocate_exception() 196 static_cast<__cxa_exception *>((void *)(raw_buffer + header_offset)); in __cxa_allocate_exception() 206 char *raw_buffer = in __cxa_free_exception() local 208 __aligned_free_with_fallback((void *)raw_buffer); in __cxa_free_exception()
|
/external/v8/src/compiler/ |
D | node.cc | 14 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); in New() local 16 reinterpret_cast<OutOfLineInputs*>(raw_buffer + capacity * sizeof(Use)); in New() 95 intptr_t raw_buffer = reinterpret_cast<intptr_t>(zone->New(size)); in New() local 97 reinterpret_cast<void*>(raw_buffer + capacity * sizeof(Use)); in New()
|
/external/python/cpython2/Modules/_sqlite/ |
D | cursor.c | 301 void* raw_buffer; in _pysqlite_fetch_one_row() local 388 if (PyObject_AsWriteBuffer(buffer, &raw_buffer, &nbytes)) { in _pysqlite_fetch_one_row() 391 memcpy(raw_buffer, sqlite3_column_blob(self->statement->st, i), nbytes); in _pysqlite_fetch_one_row()
|
D | connection.c | 594 void* raw_buffer; in _pysqlite_build_py_params() local 626 if (PyObject_AsWriteBuffer(cur_py_value, &raw_buffer, &buflen)) { in _pysqlite_build_py_params() 631 memcpy(raw_buffer, sqlite3_value_blob(cur_value), buflen); in _pysqlite_build_py_params()
|
/external/v8/src/heap/ |
D | gc-tracer.cc | 442 char raw_buffer[kBufferSize]; in Output() local 443 Vector<char> buffer(raw_buffer, kBufferSize); in Output()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 378 YV12_BUFFER_CONFIG *raw_buffer, in zz_motion_search() argument 389 int raw_stride = raw_buffer->y_stride; in zz_motion_search() 395 raw_ptr = (unsigned char *)(raw_buffer->y_buffer + recon_yoffset + d->offset); in zz_motion_search()
|