Searched refs:raw_buffer (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/lite/ |
D | string_util.cc | 113 int GetStringCount(const void* raw_buffer) { in GetStringCount() argument 115 return *static_cast<const int32_t*>(raw_buffer); in GetStringCount() 123 StringRef GetString(const void* raw_buffer, int string_index) { in GetString() argument 125 static_cast<const int32_t*>(raw_buffer) + (string_index + 1); in GetString() 127 static_cast<const char*>(raw_buffer) + (*offset), in GetString()
|
D | string_util.h | 94 int GetStringCount(const void* raw_buffer); 99 StringRef GetString(const void* 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 = in New() local 17 reinterpret_cast<OutOfLineInputs*>(raw_buffer + capacity * sizeof(Use)); in New() 105 intptr_t raw_buffer = in NewImpl() local 108 reinterpret_cast<void*>(raw_buffer + capacity * sizeof(Use)); in NewImpl()
|
/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 | 500 char raw_buffer[kBufferSize]; in Output() local 501 Vector<char> buffer(raw_buffer, kBufferSize); in Output()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 375 static void zz_motion_search(MACROBLOCK *x, YV12_BUFFER_CONFIG *raw_buffer, in zz_motion_search() argument 386 int raw_stride = raw_buffer->y_stride; in zz_motion_search() 391 raw_ptr = (unsigned char *)(raw_buffer->y_buffer + recon_yoffset + d->offset); in zz_motion_search()
|