HomeSort by relevance Sort by last modified time
    Searched refs:ob (Results 51 - 75 of 275) sorted by null

1 23 4 5 6 7 8 91011

  /toolchain/binutils/binutils-2.25/gas/
frags.c 58 frag_alloc_check (const struct obstack *ob)
60 if (ob->chunk_size == 0)
78 frag_alloc (struct obstack *ob)
83 (void) obstack_alloc (ob, 0);
84 oalign = obstack_alignment_mask (ob);
85 obstack_alignment_mask (ob) = 0;
86 ptr = (fragS *) obstack_alloc (ob, SIZEOF_STRUCT_FRAG);
87 obstack_alignment_mask (ob) = oalign;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-4.l 13 .*:30: Error: unrecognized opcode `add.ob \$f4,\$f6,\$f8'
  /external/libunwind_llvm/src/
Unwind_AppleExtras.cpp 158 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) {
163 (uintptr_t)ob->fde, &fdeInfo, &cieInfo);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind_AppleExtras.cpp 157 for (libgcc_object *ob = head->unseen_objects; ob != NULL; ob = ob->next) {
162 (uintptr_t)ob->fde, &fdeInfo, &cieInfo);
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 73 struct object ob; local
  /libcore/ojluni/src/main/java/java/nio/
DoubleBuffer.java 638 * @param ob The object to which this buffer is to be compared
642 public boolean equals(Object ob) {
643 if (this == ob)
645 if (!(ob instanceof DoubleBuffer))
647 DoubleBuffer that = (DoubleBuffer) ob;
FloatBuffer.java 639 * @param ob The object to which this buffer is to be compared
643 public boolean equals(Object ob) {
644 if (this == ob)
646 if (!(ob instanceof FloatBuffer))
648 FloatBuffer that = (FloatBuffer) ob;
IntBuffer.java 641 * @param ob The object to which this buffer is to be compared
645 public boolean equals(Object ob) {
646 if (this == ob)
648 if (!(ob instanceof IntBuffer))
650 IntBuffer that = (IntBuffer) ob;
LongBuffer.java 639 * @param ob The object to which this buffer is to be compared
643 public boolean equals(Object ob) {
644 if (this == ob)
646 if (!(ob instanceof LongBuffer))
648 LongBuffer that = (LongBuffer) ob;
ShortBuffer.java 640 * @param ob The object to which this buffer is to be compared
644 public boolean equals(Object ob) {
645 if (this == ob)
647 if (!(ob instanceof ShortBuffer))
649 ShortBuffer that = (ShortBuffer) ob;
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 11 #define PyDict_CheckExact(ob) (Py_TYPE(ob) == &PyDict_Type)
17 #define PyNumber_AsSsize_t(ob, exc) PyInt_AsLong(ob)
18 #define PyIndex_Check(ob) PyInt_Check(ob)
26 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
  /external/python/cpython2/Lib/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
51 ob = tp()
52 v = memoryview(ob)
58 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
51 ob = tp()
52 v = memoryview(ob)
58 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
51 ob = tp()
52 v = memoryview(ob)
58 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
51 ob = tp()
52 v = memoryview(ob)
58 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
51 ob = tp()
52 v = memoryview(ob)
58 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /external/libmtp/src/
libmtp.c 2776 PTPObject *ob; local
2855 PTPObject *ob, *xob; local
3093 PTPObject *ob; local
4365 PTPObject *ob; local
4449 PTPObject *ob; local
4756 PTPObject *ob; local
4959 PTPObject *ob; local
5064 PTPObject *ob; local
5273 PTPObject *ob; local
5335 PTPObject *ob; local
7097 PTPObject *ob; local
7266 PTPObject *ob; local
7515 PTPObject *ob; local
7582 PTPObject *ob; local
8397 PTPObject *ob; local
8488 PTPObject *ob; local
8542 PTPObject *ob; local
8835 PTPObject *ob; local
8929 PTPObject *ob; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
26 self->wr_object = ob;
32 new_weakref(PyObject *ob, PyObject *callback)
38 init_weakref(result, ob, callback);
282 PyObject *ob, *callback = NULL; local
284 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
288 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) {
291 Py_TYPE(ob)->tp_name);
296 list = GET_WEAKREFS_LISTPTR(ob);
307 list on ob can be mutated. This means that the ref and
    [all...]
bufferobject.c 235 PyObject *ob; local
245 if (!PyArg_ParseTuple(args, "O|nn:buffer", &ob, &offset, &size))
247 return PyBuffer_FromObject(ob, offset, size);
385 PyObject *ob; local
418 ob = PyString_FromStringAndSize(NULL, size + count);
419 if ( ob == NULL )
421 p = PyString_AS_STRING(ob);
428 return ob;
434 PyObject *ob; local
447 ob = PyString_FromStringAndSize(NULL, size * count);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
26 self->wr_object = ob;
32 new_weakref(PyObject *ob, PyObject *callback)
38 init_weakref(result, ob, callback);
271 PyObject *ob, *callback = NULL; local
273 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
277 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) {
280 Py_TYPE(ob)->tp_name);
285 list = GET_WEAKREFS_LISTPTR(ob);
296 list on ob can be mutated. This means that the ref and
    [all...]
bufferobject.c 235 PyObject *ob; local
245 if (!PyArg_ParseTuple(args, "O|nn:buffer", &ob, &offset, &size))
247 return PyBuffer_FromObject(ob, offset, size);
375 PyObject *ob; local
408 ob = PyString_FromStringAndSize(NULL, size + count);
409 if ( ob == NULL )
411 p = PyString_AS_STRING(ob);
418 return ob;
424 PyObject *ob; local
437 ob = PyString_FromStringAndSize(NULL, size * count);
    [all...]
  /external/python/cpython2/Objects/
weakrefobject.c 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
26 self->wr_object = ob;
32 new_weakref(PyObject *ob, PyObject *callback)
38 init_weakref(result, ob, callback);
281 PyObject *ob, *callback = NULL; local
283 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
287 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) {
290 Py_TYPE(ob)->tp_name);
295 list = GET_WEAKREFS_LISTPTR(ob);
306 list on ob can be mutated. This means that the ref an
    [all...]
bufferobject.c 235 PyObject *ob; local
245 if (!PyArg_ParseTuple(args, "O|nn:buffer", &ob, &offset, &size))
247 return PyBuffer_FromObject(ob, offset, size);
385 PyObject *ob; local
418 ob = PyString_FromStringAndSize(NULL, size + count);
419 if ( ob == NULL )
421 p = PyString_AS_STRING(ob);
428 return ob;
434 PyObject *ob; local
447 ob = PyString_FromStringAndSize(NULL, size * count)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
mips-opc.c 700 {"add.ob", "X,Y,Q", 0x7800000b, 0xfc20003f, WR_1|RD_2|RD_3|FP_D, 0, SB1, MX, 0 },
701 {"add.ob", "D,S,Q", 0x4800000b, 0xfc20003f, WR_1|RD_2|RD_3|FP_D, 0, N54, 0, 0 },
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_weakref.py 713 def __init__(self, ob, callback=None, value=42):
715 super(MyRef, self).__init__(ob, callback)
759 def __new__(type, ob, callback, slot1, slot2):
760 return weakref.ref.__new__(type, ob, callback)
761 def __init__(self, ob, callback, slot1, slot2):
890 ob = wr()
891 self.assertIn(ob, dict)
892 self.assertEqual(ob.arg, dict[ob])
893 objects2.remove(ob)
    [all...]

Completed in 1083 milliseconds

1 23 4 5 6 7 8 91011