HomeSort by relevance Sort by last modified time
    Searched refs:ob (Results 26 - 50 of 304) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tremolo/Tremolo/
framing.c 102 ogg_buffer *ob; local
107 ob=bs->unused_buffers;
108 bs->unused_buffers=ob->ptr.next;
111 if(ob->size<bytes){
112 ob->data=_ogg_realloc(ob->data,bytes);
113 ob->size=bytes;
117 ob=_ogg_malloc(sizeof(*ob));
118 ob->data=_ogg_malloc(bytes<16?16:bytes)
149 ogg_buffer *ob=_fetch_buffer(bs,bytes); local
157 ogg_buffer *ob=or->buffer; local
291 ogg_buffer *ob=or->buffer; local
440 oggbyte_buffer ob; local
446 oggbyte_buffer ob; local
452 oggbyte_buffer ob; local
458 oggbyte_buffer ob; local
464 oggbyte_buffer ob; local
470 oggbyte_buffer ob; local
476 oggbyte_buffer ob; local
502 oggbyte_buffer ob; local
925 oggbyte_buffer ob; local
1106 oggbyte_buffer ob; local
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectionKey.java 381 * @param ob
387 public final Object attach(Object ob) {
388 return attachmentUpdater.getAndSet(this, ob);
  /external/libunwind_llvm/src/
UnwindLevel1-gcc-ext.c 256 _LIBUNWIND_EXPORT void __register_frame_info_bases(const void *fde, void *ob,
259 (void)ob;
263 fde, ob, tb, db);
267 _LIBUNWIND_EXPORT void __register_frame_info(const void *fde, void *ob) {
269 (void)ob;
270 _LIBUNWIND_TRACE_API("__register_frame_info(%p, %p)", fde, ob);
275 void *ob, void *tb,
278 (void)ob;
282 "(%p,%p, %p, %p)", fde, ob, tb, db);
286 _LIBUNWIND_EXPORT void __register_frame_info_table(const void *fde, void *ob) {
    [all...]
  /external/python/cpython2/Lib/idlelib/
CallTips.py 139 def get_arg_text(ob):
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/python/cpython3/Lib/idlelib/
calltips.py 127 def get_argspec(ob):
138 ob_call = ob.__call__
141 if isinstance(ob, type):
142 fob = ob.__init__
146 fob = ob
149 if (isinstance(ob, (type, types.MethodType)) or
159 doc = getattr(ob, "__doc__", "")
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SpillPlacement.cpp 236 unsigned ob = bundles->getBundle(I->Number, 1); local
237 activate(ob);
238 nodes[ob].addBias(Freq * Bias[I->Exit], 0);
251 unsigned ob = bundles->getBundle(*I, 1); local
253 activate(ob);
255 nodes[ob].addBias(-Freq, 0);
264 unsigned ob = bundles->getBundle(Number, 1); local
267 if (ib == ob)
270 activate(ob);
273 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill()
    [all...]
  /external/elfutils/lib/
eu-config.h 125 #define obstack_calloc(ob, size) \
126 ({ size_t _s = (size); memset (obstack_alloc (ob, _s), '\0', _s); })
127 #define obstack_strdup(ob, str) \
128 ({ const char *_s = (str); obstack_copy0 (ob, _s, strlen (_s)); })
129 #define obstack_strndup(ob, str, n) \
130 ({ const char *_s = (str); obstack_copy0 (ob, _s, strnlen (_s, n)); })
  /external/python/cpython3/Lib/ctypes/test/
test_pep3118.py 24 ob = tp()
25 v = memoryview(ob)
31 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
54 ob = tp()
55 v = memoryview(ob)
61 self.assertEqual(len(v) * sizeof(itemtp), sizeof(ob))
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketOptionRegistry.java 47 public boolean equals(Object ob) {
48 if (ob == null) return false;
49 if (!(ob instanceof RegistryKey)) return false;
50 RegistryKey other = (RegistryKey)ob;
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
CallTips.py 133 def get_arg_text(ob):
137 if ob is not None and hasattr(ob, '__call__'):
139 if type(ob) in (types.ClassType, types.TypeType):
141 fob = _find_constructor(ob)
146 elif type(ob)==types.MethodType:
149 fob = ob.im_func
152 fob = ob
168 doc = getattr(ob, "__doc__", "")
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
CallTips.py 133 def get_arg_text(ob):
137 if ob is not None and hasattr(ob, '__call__'):
139 if type(ob) in (types.ClassType, types.TypeType):
141 fob = _find_constructor(ob)
146 elif type(ob)==types.MethodType:
149 fob = ob.im_func
152 fob = ob
168 doc = getattr(ob, "__doc__", "")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 133 def get_arg_text(ob):
137 if ob is not None and hasattr(ob, '__call__'):
139 if type(ob) in (types.ClassType, types.TypeType):
141 fob = _find_constructor(ob)
146 elif type(ob)==types.MethodType:
149 fob = ob.im_func
152 fob = ob
168 doc = getattr(ob, "__doc__", "")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 133 def get_arg_text(ob):
137 if ob is not None and hasattr(ob, '__call__'):
139 if type(ob) in (types.ClassType, types.TypeType):
141 fob = _find_constructor(ob)
146 elif type(ob)==types.MethodType:
149 fob = ob.im_func
152 fob = ob
168 doc = getattr(ob, "__doc__", "")
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips64-dsp.d 16 0+0018 <[^>]*> 7d4b4814 addu\.ob t1,t2,t3
17 0+001c <[^>]*> 7d6c5114 addu_s\.ob t2,t3,t4
26 0+0040 <[^>]*> 7dcf0015 cmpu\.eq\.ob t6,t7
27 0+0044 <[^>]*> 7df00055 cmpu\.lt\.ob t7,s0
28 0+0048 <[^>]*> 7e110095 cmpu\.le\.ob s0,s1
29 0+004c <[^>]*> 7d2a4115 cmpgu\.eq\.ob t0,t1,t2
30 0+0050 <[^>]*> 7d4b4955 cmpgu\.lt\.ob t1,t2,t3
31 0+0054 <[^>]*> 7d6c5195 cmpgu\.le\.ob t2,t3,t4
104 0+0178 <[^>]*> 7f5bc8d5 pick\.ob t9,k0,k1
121 0+01bc <[^>]*> 7ca62315 precrq\.ob\.qh a0,a1,a
    [all...]
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 270 unsigned ob = bundles->getBundle(I->Number, 1); local
271 activate(ob);
272 nodes[ob].addBias(Freq, I->Exit);
285 unsigned ob = bundles->getBundle(*I, 1); local
287 activate(ob);
289 nodes[ob].addBias(Freq, PrefSpill);
298 unsigned ob = bundles->getBundle(Number, 1); local
301 if (ib == ob)
304 activate(ob);
306 nodes[ib].addLink(ob, Freq)
    [all...]
  /external/python/cpython3/Objects/
weakrefobject.c 23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
26 self->wr_object = ob;
34 new_weakref(PyObject *ob, PyObject *callback)
40 init_weakref(result, ob, callback);
280 PyObject *ob, *callback = NULL; local
282 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
286 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(ob))) {
289 Py_TYPE(ob)->tp_name);
294 list = GET_WEAKREFS_LISTPTR(ob);
305 list on ob can be mutated. This means that the ref an
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
weakrefobject.h 56 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
58 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
weakrefobject.h 59 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
61 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
  /external/jline/src/src/main/native/
jline_WindowsTerminal.c 5 (JNIEnv *env, jobject ob)
23 (JNIEnv *env, jobject ob, jint mode)
  /external/libxcam/modules/isp/
x3a_isp_config.cpp 92 ob = *config.ob_config;
93 isp_config.ob_config = &ob;
241 struct atomisp_ob_config ob; local
245 xcam_mem_clear (ob);
246 if (translator->translate_black_level (bl_res->get_standard_result(), ob)
251 _isp_content.ob = ob;
252 _isp_content.isp_config.ob_config = &_isp_content.ob;
  /external/python/cpython2/Include/
weakrefobject.h 56 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
58 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
  /external/python/cpython3/Include/
weakrefobject.h 58 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
60 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
  /frameworks/rs/
rsApiContext.cpp 73 ObjectBase *ob = static_cast<ObjectBase *>(obj); local
74 (*name) = ob->getName();
  /libcore/ojluni/src/main/java/sun/misc/
Cleaner.java 122 * @param ob the referent object to be cleaned
130 public static Cleaner create(Object ob, Runnable thunk) {
133 return add(new Cleaner(ob, thunk));
  /prebuilts/gdb/darwin-x86/include/python2.7/
weakrefobject.h 59 PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
61 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,

Completed in 973 milliseconds

12 3 4 5 6 7 8 91011>>