Searched defs:ref (Results 1 - 25 of 30) sorted by last modified time

12

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DATokPtr.cpp39 void ANTLRTokenPtr::ref() const function in class:ANTLRTokenPtr
42 ptr_->ref();
70 lhs.ref(); // protect against "xp = xp"; ie same underlying object
78 addr->ref();
H A DAToken.h81 virtual void ref() {;} function in class:ANTLRAbstractToken
143 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
H A DAToken_traditional.h79 virtual void ref() {;} function in class:ANTLRAbstractToken
140 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregparse.c2626 UChar** rname_end, ScanEnv* env, int* rback_num, int ref)
2654 if (ref == 1)
2662 if (ref == 1) {
2743 UChar** rname_end, ScanEnv* env, int* rback_num, int ref)
2625 fetch_name(OnigCodePoint start_code, UChar** src, UChar* end, UChar** rname_end, ScanEnv* env, int* rback_num, int ref) argument
2742 fetch_name(OnigCodePoint start_code, UChar** src, UChar* end, UChar** rname_end, ScanEnv* env, int* rback_num, int ref) argument
/device/linaro/bootloader/edk2/MdePkg/Include/Uefi/
H A DUefiInternalFormRepresentation.h677 EFI_HII_REF ref; ///< EFI_IFR_TYPE_REF member in union:__anon8298
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/
H A Dgrant_table.h309 * GNTTABOP_map_grant_ref: Map the grant entry (<dom>,<ref>) for access
329 grant_ref_t ref; member in struct:gnttab_map_grant_ref
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlauxlib.c523 int ref; local
530 ref = (int)lua_tointeger(L, -1); /* ref = t[freelist] */
532 if (ref != 0) { /* any free element? */
533 lua_rawgeti(L, t, ref); /* remove it from list */
534 lua_rawseti(L, t, freelist); /* (t[freelist] = t[ref]) */
537 ref = (int)lua_rawlen(L, t) + 1; /* get a new reference */
538 lua_rawseti(L, t, ref);
539 return ref;
543 LUALIB_API void luaL_unref (lua_State *L, int t, int ref) { argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dweakrefobject.h60 PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); variable
73 #define PyWeakref_GET_OBJECT(ref) \
74 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
75 ? ((PyWeakReference *)(ref))->wr_object \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A D_weakrefset.py5 from _weakref import ref namespace
18 self.weakcontainer = ref(weakcontainer)
38 def _remove(item, selfref=ref(self)):
72 wr = ref(item)
86 self.data.add(ref(item, self._remove))
111 self.data.remove(ref(item))
116 self.data.discard(ref(item))
142 self.data.difference_update(ref(item) for item in other)
154 self.data.intersection_update(ref(item) for item in other)
158 return self.data.issubset(ref(ite
[all...]
H A Dxmllib.py28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') variable
192 res = ref.match(data, s)
800 def unknown_charref(self, ref): pass
862 def unknown_entityref(self, ref):
864 print '*** unknown entity ref: &' + ref + ';'
866 def unknown_charref(self, ref):
868 print '*** unknown char ref: &#' + ref + ';'
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dobmalloc.c282 uint count; } ref; /* number of allocated blocks */ member in struct:pool_header
437 uint count; } ref;
828 ++pool->ref.count;
922 pool->ref.count = 1;
1022 assert(pool->ref.count > 0); /* else it was empty */
1032 if (--pool->ref.count != 0) {
1196 --pool->ref.count;
1197 assert(pool->ref.count > 0); /* else the pool is empty */
1853 if (p->ref.count == 0) {
1859 numblocks[sz] += p->ref
[all...]
H A Dtypeobject.c75 PyObject *raw, *ref; local
85 ref = PyList_GET_ITEM(raw, i);
86 ref = PyWeakref_GET_OBJECT(ref);
87 if (ref != Py_None) {
88 PyType_Modified((PyTypeObject *)ref);
383 PyObject *ref, *subclasses, *old_mro; local
392 ref = PyList_GET_ITEM(subclasses, i);
393 assert(PyWeakref_CheckRef(ref));
394 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
2664 PyObject *list, *raw, *ref; local
4161 PyObject *list, *ref, *newobj; local
4187 PyObject *list, *ref; local
6347 PyObject *ref, *subclasses, *dict; local
[all...]
H A Dweakrefobject.c216 * two callback-less refs (ref and proxy). Used to determine if the
285 PyWeakReference *ref, *proxy; local
297 get_basic_refs(*list, &ref, &proxy);
299 if (ref != NULL) {
301 Py_INCREF(ref);
302 return (PyObject *)ref;
307 list on ob can be mutated. This means that the ref and
320 get_basic_refs(*list, &ref, &proxy);
321 prev = (proxy == NULL) ? ref : proxy;
758 PyWeakReference *ref, *prox local
817 PyWeakReference *ref, *proxy; local
877 PyWeakref_GetObject(PyObject *ref) argument
890 handle_callback(PyWeakReference *ref, PyObject *callback) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dweakrefobject.h63 PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); variable
69 #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A D_weakrefset.py5 from _weakref import ref namespace
18 self.weakcontainer = ref(weakcontainer)
38 def _remove(item, selfref=ref(self)):
70 wr = ref(item)
84 self.data.add(ref(item, self._remove))
109 self.data.remove(ref(item))
114 self.data.discard(ref(item))
148 self.data.difference_update(ref(item) for item in other)
155 self.data.difference_update(ref(item) for item in other)
165 self.data.intersection_update(ref(ite
[all...]
H A Dxmllib.py28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') variable
192 res = ref.match(data, s)
800 def unknown_charref(self, ref): pass
862 def unknown_entityref(self, ref):
864 print '*** unknown entity ref: &' + ref + ';'
866 def unknown_charref(self, ref):
868 print '*** unknown char ref: &#' + ref + ';'
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_deque.py510 ref = weakref.ref(obj) variable in class:TestBasic.test_container_iterator.C
518 self.assertTrue(ref() is None, "Cycle was not collected")
H A Dtest_dict.py545 ref = weakref.ref(obj) variable in class:DictTest.test_container_iterator.C
550 self.assertIs(ref(), None, "Cycle was not collected")
H A Dtest_weakset.py3 from weakref import proxy, ref, WeakSet namespace
151 # Create a nest of cycles to exercise overall ref count check
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dobmalloc.c252 uint count; } ref; /* number of allocated blocks */ member in struct:pool_header
407 uint count; } ref;
785 ++pool->ref.count;
879 pool->ref.count = 1;
978 assert(pool->ref.count > 0); /* else it was empty */
988 if (--pool->ref.count != 0) {
1148 --pool->ref.count;
1149 assert(pool->ref.count > 0); /* else the pool is empty */
1804 if (p->ref.count == 0) {
1810 numblocks[sz] += p->ref
[all...]
H A Dtypeobject.c75 PyObject *raw, *ref; local
85 ref = PyList_GET_ITEM(raw, i);
86 ref = PyWeakref_GET_OBJECT(ref);
87 if (ref != Py_None) {
88 PyType_Modified((PyTypeObject *)ref);
377 PyObject *ref, *subclasses, *old_mro; local
386 ref = PyList_GET_ITEM(subclasses, i);
387 assert(PyWeakref_CheckRef(ref));
388 subclass = (PyTypeObject *)PyWeakref_GET_OBJECT(ref);
2637 PyObject *list, *raw, *ref; local
4109 PyObject *list, *ref, *newobj; local
4135 PyObject *list, *ref; local
6311 PyObject *ref, *subclasses, *dict; local
[all...]
H A Dweakrefobject.c205 * two callback-less refs (ref and proxy). Used to determine if the
274 PyWeakReference *ref, *proxy; local
286 get_basic_refs(*list, &ref, &proxy);
288 if (ref != NULL) {
290 Py_INCREF(ref);
291 return (PyObject *)ref;
296 list on ob can be mutated. This means that the ref and
309 get_basic_refs(*list, &ref, &proxy);
310 prev = (proxy == NULL) ? ref : proxy;
747 PyWeakReference *ref, *prox local
806 PyWeakReference *ref, *proxy; local
866 PyWeakref_GetObject(PyObject *ref) argument
879 handle_callback(PyWeakReference *ref, PyObject *callback) argument
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
H A DUefiInternalFormRepresentation.h592 EFI_HII_REF ref; member in union:__anon3535
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DATokPtrImpl.h45 void ANTLRTokenPtr::ref() const function in class:ANTLRTokenPtr
48 ptr_->ref();
76 lhs.ref(); // protect against "xp = xp"; ie same underlying object
84 addr->ref();
H A DAToken.h82 virtual void ref() {;} function in class:ANTLRAbstractToken
163 void ref() { refcnt_++; } function in class:ANTLRRefCountToken

Completed in 2395 milliseconds

12