/external/python/cpython2/Include/ |
D | setobject.h | 69 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) argument 70 #define PyAnySet_CheckExact(ob) \ argument 71 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type) 72 #define PyAnySet_Check(ob) \ argument 73 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \ 74 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \ 75 PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type)) 76 #define PySet_Check(ob) \ argument 77 (Py_TYPE(ob) == &PySet_Type || \ 78 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type)) [all …]
|
/external/python/cpython3/Include/ |
D | setobject.h | 91 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) argument 92 #define PyAnySet_CheckExact(ob) \ argument 93 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type) 94 #define PyAnySet_Check(ob) \ argument 95 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \ 96 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \ 97 PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type)) 98 #define PySet_Check(ob) \ argument 99 (Py_TYPE(ob) == &PySet_Type || \ 100 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type)) [all …]
|
/external/tremolo/Tremolo/ |
D | framing.c | 102 ogg_buffer *ob; in _fetch_buffer() local 107 ob=bs->unused_buffers; in _fetch_buffer() 108 bs->unused_buffers=ob->ptr.next; in _fetch_buffer() 111 if(ob->size<bytes){ in _fetch_buffer() 112 ob->data=_ogg_realloc(ob->data,bytes); in _fetch_buffer() 113 ob->size=bytes; in _fetch_buffer() 117 ob=_ogg_malloc(sizeof(*ob)); in _fetch_buffer() 118 ob->data=_ogg_malloc(bytes<16?16:bytes); in _fetch_buffer() 119 ob->size=bytes; in _fetch_buffer() 122 ob->refcount=1; in _fetch_buffer() [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_so_emit.c | 141 unsigned ob; in so_emit_prim() local 144 int ob = state->output[slot].output_buffer; in so_emit_prim() local 149 if (!draw->so.targets[ob]) { in so_emit_prim() 152 if ((buffer_total_bytes[ob] + write_size + dst_offset) > in so_emit_prim() 153 draw->so.targets[ob]->target.buffer_size) { in so_emit_prim() 157 for (ob = 0; ob < draw->so.num_targets; ++ob) { in so_emit_prim() 158 buffer_total_bytes[ob] += state->stride[ob] * sizeof(float); in so_emit_prim() 165 unsigned ob; in so_emit_prim() local 179 ob = state->output[slot].output_buffer; in so_emit_prim() 180 buffer_written[ob] = TRUE; in so_emit_prim() [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | datetime.rst | 19 .. c:function:: int PyDate_Check(PyObject *ob) 21 Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype of 22 :c:data:`PyDateTime_DateType`. *ob* must not be *NULL*. 27 .. c:function:: int PyDate_CheckExact(PyObject *ob) 29 Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not be 35 .. c:function:: int PyDateTime_Check(PyObject *ob) 37 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a subtype of 38 :c:data:`PyDateTime_DateTimeType`. *ob* must not be *NULL*. 43 .. c:function:: int PyDateTime_CheckExact(PyObject *ob) 45 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must not [all …]
|
D | weakref.rst | 14 .. c:function:: int PyWeakref_Check(ob) 16 Return true if *ob* is either a reference or proxy object. 21 .. c:function:: int PyWeakref_CheckRef(ob) 23 Return true if *ob* is a reference object. 28 .. c:function:: int PyWeakref_CheckProxy(ob) 30 Return true if *ob* is a proxy object. 35 .. c:function:: PyObject* PyWeakref_NewRef(PyObject *ob, PyObject *callback) 37 Return a weak reference object for the object *ob*. This will always return 40 callable object that receives notification when *ob* is garbage collected; it 42 itself. *callback* may also be ``None`` or *NULL*. If *ob* is not a [all …]
|
D | gen.rst | 23 .. c:function:: int PyGen_Check(ob) 25 Return true if *ob* is a generator object; *ob* must not be *NULL*. 28 .. c:function:: int PyGen_CheckExact(ob) 30 Return true if *ob*'s type is *PyGen_Type* is a generator object; *ob* must not
|
/external/libkmsxx/kms++/src/ |
D | card.cpp | 67 auto ob = new Connector(*this, id, i); in Card() local 68 m_obmap[id] = ob; in Card() 69 m_connectors.push_back(ob); in Card() 74 auto ob = new Crtc(*this, id, i); in Card() local 75 m_obmap[id] = ob; in Card() 76 m_crtcs.push_back(ob); in Card() 81 auto ob = new Encoder(*this, id, i); in Card() local 82 m_obmap[id] = ob; in Card() 83 m_encoders.push_back(ob); in Card() 92 auto ob = new Plane(*this, id, i); in Card() local [all …]
|
D | atomicreq.cpp | 47 void AtomicReq::add(DrmPropObject* ob, Property *prop, uint64_t value) in add() argument 49 add(ob->id(), prop->id(), value); in add() 52 void AtomicReq::add(kms::DrmPropObject* ob, const string& prop, uint64_t value) in add() argument 54 add(ob, ob->get_prop(prop), value); in add() 57 void AtomicReq::add(kms::DrmPropObject* ob, const map<string, uint64_t>& values) in add() argument 60 add(ob, kvp.first, kvp.second); in add()
|
/external/python/cpython2/RISCOS/ |
D | unixstuff.c | 46 { int ob; in isdir() local 47 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0; in isdir() 48 switch (ob) in isdir() 56 { int ob; in isfile() local 57 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0; in isfile() 58 switch (ob) in isfile() 66 { int ob; in object_exists() local 67 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0; in object_exists() 68 switch (ob) in object_exists()
|
/external/python/cpython3/Doc/c-api/ |
D | datetime.rst | 28 .. c:function:: int PyDate_Check(PyObject *ob) 30 Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype of 31 :c:data:`PyDateTime_DateType`. *ob* must not be *NULL*. 34 .. c:function:: int PyDate_CheckExact(PyObject *ob) 36 Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not be 40 .. c:function:: int PyDateTime_Check(PyObject *ob) 42 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a subtype of 43 :c:data:`PyDateTime_DateTimeType`. *ob* must not be *NULL*. 46 .. c:function:: int PyDateTime_CheckExact(PyObject *ob) 48 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must not [all …]
|
D | weakref.rst | 14 .. c:function:: int PyWeakref_Check(ob) 16 Return true if *ob* is either a reference or proxy object. 19 .. c:function:: int PyWeakref_CheckRef(ob) 21 Return true if *ob* is a reference object. 24 .. c:function:: int PyWeakref_CheckProxy(ob) 26 Return true if *ob* is a proxy object. 29 .. c:function:: PyObject* PyWeakref_NewRef(PyObject *ob, PyObject *callback) 31 Return a weak reference object for the object *ob*. This will always return 34 callable object that receives notification when *ob* is garbage collected; it 36 itself. *callback* may also be ``None`` or *NULL*. If *ob* is not a [all …]
|
D | gen.rst | 23 .. c:function:: int PyGen_Check(PyObject *ob) 25 Return true if *ob* is a generator object; *ob* must not be *NULL*. 28 .. c:function:: int PyGen_CheckExact(PyObject *ob) 30 Return true if *ob*'s type is *PyGen_Type*; *ob* must not be *NULL*.
|
/external/libunwind_llvm/src/ |
D | UnwindLevel1-gcc-ext.c | 259 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob, in __register_frame_info_bases() argument 262 (void)ob; in __register_frame_info_bases() 266 fde, ob, tb, db); in __register_frame_info_bases() 270 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) { in __register_frame_info() argument 272 (void)ob; in __register_frame_info() 273 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)", fde, ob); in __register_frame_info() 278 void *ob, void *tb, in __register_frame_info_table_bases() argument 281 (void)ob; in __register_frame_info_table_bases() 285 "(%p,%p, %p, %p)", fde, ob, tb, db); in __register_frame_info_table_bases() 289 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) { in __register_frame_info_table() argument [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | CallTips.py | 139 def get_arg_text(ob): argument 150 ob_call = ob.__call__ 152 if type(ob) is types.ClassType: # old-style 153 ob_call = ob 158 if type(ob) in (types.ClassType, types.TypeType): 161 fob = _find_constructor(ob) 166 elif type(ob) == types.MethodType: 169 fob = ob.im_func 170 if ob.im_self is not None: 177 fob = ob [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | SpillPlacement.cpp | 236 unsigned ob = bundles->getBundle(I->Number, 1); in addConstraints() local 237 activate(ob); in addConstraints() 238 nodes[ob].addBias(Freq * Bias[I->Exit], 0); in addConstraints() 251 unsigned ob = bundles->getBundle(*I, 1); in addPrefSpill() local 253 activate(ob); in addPrefSpill() 255 nodes[ob].addBias(-Freq, 0); in addPrefSpill() 264 unsigned ob = bundles->getBundle(Number, 1); in addLinks() local 267 if (ib == ob) in addLinks() 270 activate(ob); in addLinks() 273 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill()) in addLinks() [all …]
|
/external/python/cpython3/Lib/ |
D | pyclbr.py | 83 def _nest_function(ob, func_name, lineno): argument 85 newfunc = Function(ob.module, func_name, ob.file, lineno, ob) 86 ob._addchild(func_name, newfunc) 87 if isinstance(ob, Class): 88 ob._addmethod(func_name, lineno) 91 def _nest_class(ob, class_name, lineno, super=None): argument 93 newclass = Class(ob.module, class_name, super, ob.file, lineno, ob) 94 ob._addchild(class_name, newclass) 391 for ob in new_objs: 392 ob.indent = obj.indent + indent_level
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | SpillPlacement.cpp | 278 unsigned ob = bundles->getBundle(I->Number, true); in addConstraints() local 279 activate(ob); in addConstraints() 280 nodes[ob].addBias(Freq, I->Exit); in addConstraints() 293 unsigned ob = bundles->getBundle(*I, true); in addPrefSpill() local 295 activate(ob); in addPrefSpill() 297 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill() 306 unsigned ob = bundles->getBundle(Number, true); in addLinks() local 309 if (ib == ob) in addLinks() 312 activate(ob); in addLinks() 314 nodes[ib].addLink(ob, Freq); in addLinks() [all …]
|
/external/llvm/lib/CodeGen/ |
D | SpillPlacement.cpp | 270 unsigned ob = bundles->getBundle(I->Number, 1); in addConstraints() local 271 activate(ob); in addConstraints() 272 nodes[ob].addBias(Freq, I->Exit); in addConstraints() 285 unsigned ob = bundles->getBundle(*I, 1); in addPrefSpill() local 287 activate(ob); in addPrefSpill() 289 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill() 298 unsigned ob = bundles->getBundle(Number, 1); in addLinks() local 301 if (ib == ob) in addLinks() 304 activate(ob); in addLinks() 306 nodes[ib].addLink(ob, Freq); in addLinks() [all …]
|
/external/libmtp/src/ |
D | libmtp.c | 2776 PTPObject *ob; in get_handles_recursively() local 2778 PTPOBJECT_OBJECTINFO_LOADED, &ob); in get_handles_recursively() 2780 if (ob->oi.ObjectFormat == PTP_OFC_Association) in get_handles_recursively() 2855 PTPObject *ob, *xob; in flush_handles() local 2857 ob = ¶ms->objects[i]; in flush_handles() 2863 if (ob->oi.Filename == NULL) in flush_handles() 2864 ob->oi.Filename = strdup("<null>"); in flush_handles() 2865 if (ob->oi.Keywords == NULL) in flush_handles() 2866 ob->oi.Keywords = strdup("<null>"); in flush_handles() 2869 if(ob->oi.ObjectFormat != PTP_OFC_Association) in flush_handles() [all …]
|
/external/python/cpython3/Objects/ |
D | weakrefobject.c | 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback) in init_weakref() argument 26 self->wr_object = ob; in init_weakref() 34 new_weakref(PyObject *ob, PyObject *callback) in new_weakref() argument 40 init_weakref(result, ob, callback); in new_weakref() 280 PyObject *ob, *callback = NULL; in weakref___new__() local 282 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) { in weakref___new__() 286 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) { in weakref___new__() 289 Py_TYPE(ob)->tp_name); in weakref___new__() 294 list = GET_WEAKREFS_LISTPTR(ob); in weakref___new__() 311 init_weakref(self, ob, callback); in weakref___new__() [all …]
|
D | rangeobject.c | 338 range_contains_long(rangeobject *r, PyObject *ob) in range_contains_long() argument 351 cmp2 = PyObject_RichCompareBool(r->start, ob, Py_LE); in range_contains_long() 352 cmp3 = PyObject_RichCompareBool(ob, r->stop, Py_LT); in range_contains_long() 355 cmp2 = PyObject_RichCompareBool(ob, r->start, Py_LE); in range_contains_long() 356 cmp3 = PyObject_RichCompareBool(r->stop, ob, Py_LT); in range_contains_long() 367 tmp1 = PyNumber_Subtract(ob, r->start); in range_contains_long() 382 range_contains(rangeobject *r, PyObject *ob) in range_contains() argument 384 if (PyLong_CheckExact(ob) || PyBool_Check(ob)) in range_contains() 385 return range_contains_long(r, ob); in range_contains() 387 return (int)_PySequence_IterSearch((PyObject*)r, ob, in range_contains() [all …]
|
/external/python/cpython2/Objects/ |
D | weakrefobject.c | 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback) in init_weakref() argument 26 self->wr_object = ob; in init_weakref() 34 new_weakref(PyObject *ob, PyObject *callback) in new_weakref() argument 40 init_weakref(result, ob, callback); in new_weakref() 283 PyObject *ob, *callback = NULL; in weakref___new__() local 285 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) { in weakref___new__() 289 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) { in weakref___new__() 292 Py_TYPE(ob)->tp_name); in weakref___new__() 297 list = GET_WEAKREFS_LISTPTR(ob); in weakref___new__() 314 init_weakref(self, ob, callback); in weakref___new__() [all …]
|
/external/perfetto/src/trace_processor/ |
D | query_constraints.cc | 68 OrderBy ob{}; in AddOrderBy() local 69 ob.iColumn = column; in AddOrderBy() 70 ob.desc = desc; in AddOrderBy() 71 order_by_.emplace_back(ob); in AddOrderBy() 89 for (const auto& ob : order_by_) { in ToNewSqlite3String() local 90 str_result.append(std::to_string(ob.iColumn)); in ToNewSqlite3String() 92 str_result.append(std::to_string(ob.desc)); in ToNewSqlite3String()
|
/external/libxcam/modules/isp/ |
D | x3a_isp_config.cpp | 92 ob = *config.ob_config; in copy() 93 isp_config.ob_config = &ob; in copy() 241 struct atomisp_ob_config ob; in attach() local 245 xcam_mem_clear (ob); in attach() 246 if (translator->translate_black_level (bl_res->get_standard_result(), ob) in attach() 251 _isp_content.ob = ob; in attach() 252 _isp_content.isp_config.ob_config = &_isp_content.ob; in attach()
|