Searched refs:b_base (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Objects/ |
D | bufferobject.c | 9 PyObject *b_base; member 29 if (self->b_base == NULL) { in get_buf() 37 PyBufferProcs *bp = Py_TYPE(self->b_base)->tp_as_buffer; in get_buf() 38 if ((*bp->bf_getsegcount)(self->b_base, NULL) != 1) { in get_buf() 79 if ((count = (*proc)(self->b_base, 0, ptr)) < 0) in get_buf() 120 b->b_base = base; in buffer_from_memory() 138 if ( PyBuffer_Check(base) && (((PyBufferObject *)base)->b_base) ) { in buffer_from_object() 149 base = b->b_base; in buffer_from_object() 220 b->b_base = NULL; in PyBuffer_New() 262 Py_XDECREF(self->b_base); in buffer_dealloc() [all …]
|
/external/tensorflow/tensorflow/core/framework/ |
D | rendezvous.cc | 39 const char* b_base = b.buf_.data(); in operator =() local 41 src_device = StringPiece(buf_.data() + (b.src_device.data() - b_base), in operator =() 45 dst_device = StringPiece(buf_.data() + (b.dst_device.data() - b_base), in operator =() 48 edge_name = StringPiece(buf_.data() + (b.edge_name.data() - b_base), in operator =()
|
/external/libabigail/include/ |
D | abg-diff-utils.h | 1485 RandomAccessOutputIterator b_base, in compute_diff() argument 1494 unsigned a_offset = a_begin - a_base, b_offset = b_begin - b_base; in compute_diff() 1513 ins.inserted_indexes().push_back(i - b_base); in compute_diff() 1564 ins.inserted_indexes().push_back(i - b_base); in compute_diff() 1580 b_base, b_begin, b_base + (px.y() + 1), in compute_diff() 1589 b_base, b_base + (pu.y() + 1), b_end, in compute_diff() 1754 RandomAccessOutputIterator b_base, in compute_diff() argument 1764 b_base, b_begin, b_end, in compute_diff() 1911 RandomAccessOutputIterator b_base, in compute_diff() argument 1920 b_base, b_begin, b_end, in compute_diff()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | triangular_solve_thunk.cc | 87 char* b_base = static_cast<char*>( in ExecuteOnStream() local 94 se::DeviceMemoryBase(b_base + i * b_batch_stride_, b_batch_stride_); in ExecuteOnStream()
|
/external/python/cpython3/Modules/_ctypes/ |
D | ctypes.h | 48 CDataObject *b_base; /* pointer to base object or NULL */ member 78 CDataObject *b_base; /* pointer to base object or NULL */ member
|
D | _ctypes.c | 2659 while (self->b_base) in PyCData_GetContainer() 2660 self = self->b_base; in PyCData_GetContainer() 2693 while (target->b_base) { in unique_key() 2702 target = target->b_base; in unique_key() 2765 Py_VISIT((PyObject *)self->b_base); in PyCData_traverse() 2777 Py_CLEAR(self->b_base); in PyCData_clear() 2790 offsetof(CDataObject, b_base), READONLY, 3010 cmem->b_base = (CDataObject *)base; in PyCData_FromBaseObj() 3238 obj->b_base = NULL; in GenericPyCData_new()
|
/external/python/cpython2/Modules/_ctypes/ |
D | ctypes.h | 88 CDataObject *b_base; /* pointer to base object or NULL */ member 118 CDataObject *b_base; /* pointer to base object or NULL */ member
|
D | _ctypes.c | 2561 while (self->b_base) in PyCData_GetContainer() 2562 self = self->b_base; in PyCData_GetContainer() 2593 while (target->b_base) { in unique_key() 2606 target = target->b_base; in unique_key() 2665 Py_VISIT((PyObject *)self->b_base); in PyCData_traverse() 2677 Py_CLEAR(self->b_base); in PyCData_clear() 2690 offsetof(CDataObject, b_base), READONLY, 2933 cmem->b_base = (CDataObject *)base; in PyCData_FromBaseObj() 3151 obj->b_base = NULL; in GenericPyCData_new()
|