Searched defs:ref (Results 1 - 25 of 31) sorted by relevance

12

/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
85 addr->ref();
H A DAToken.h82 virtual void ref() {;} function in class:ANTLRAbstractToken
163 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
/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_traditional.h79 virtual void ref() {;} function in class:ANTLRAbstractToken
140 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
H A DAToken.h81 virtual void ref() {;} function in class:ANTLRAbstractToken
143 void ref() { refcnt_++; } function in class:ANTLRRefCountToken
/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.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.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.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/generic/goldfish/camera/
H A DExif.cpp410 const char* ref = entry.data.d[0] < 0.0f ? "S" : "N"; local
411 createEntry(exifData, EXIF_IFD_GPS, EXIF_TAG_GPS_LATITUDE_REF, ref);
417 ref = entry.data.d[1] < 0.0f ? "W" : "E";
418 createEntry(exifData, EXIF_IFD_GPS, EXIF_TAG_GPS_LONGITUDE_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_weakset.py3 from weakref import proxy, ref, WeakSet namespace
151 # Create a nest of cycles to exercise overall ref count check
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")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
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...]
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...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
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...]
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...]
/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/generic/goldfish-opengl/system/GLESv1_enc/
H A Dgl_enc.cpp20 void glAlphaFunc_enc(void *self , GLenum func, GLclampf ref) argument
39 memcpy(ptr, &ref, 4); ptr += 4;
1158 void glAlphaFuncx_enc(void *self , GLenum func, GLclampx ref) argument
1177 memcpy(ptr, &ref, 4); ptr += 4;
3584 void glStencilFunc_enc(void *self , GLenum func, GLint ref, GLuint mask) argument
3603 memcpy(ptr, &ref, 4); ptr += 4;
4926 void glAlphaFuncxOES_enc(void *self , GLenum func, GLclampx ref) argument
4945 memcpy(ptr, &ref, 4); ptr += 4;
H A Dgl_entry.cpp8 void glAlphaFunc(GLenum func, GLclampf ref);
47 void glAlphaFuncx(GLenum func, GLclampx ref);
134 void glStencilFunc(GLenum func, GLint ref, GLuint mask);
183 void glAlphaFuncxOES(GLenum func, GLclampx ref);
307 void glAlphaFunc(GLenum func, GLclampf ref) argument
310 ctx->glAlphaFunc(ctx, func, ref);
541 void glAlphaFuncx(GLenum func, GLclampx ref) argument
544 ctx->glAlphaFuncx(ctx, func, ref);
1067 void glStencilFunc(GLenum func, GLint ref, GLuint mask) argument
1070 ctx->glStencilFunc(ctx, func, ref, mas
1361 glAlphaFuncxOES(GLenum func, GLclampx ref) argument
[all...]
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
H A Dgles.cpp56 void glAlphaFunc(GLenum func, GLclampf ref) argument
58 getDispatch()->glAlphaFunc(func, ref);
251 void glAlphaFuncx(GLenum func, GLclampx ref) argument
253 getDispatch()->glAlphaFuncx(func, ref);
691 void glStencilFunc(GLenum func, GLint ref, GLuint mask) argument
693 getDispatch()->glStencilFunc(func, ref, mask);
846 void glAlphaFuncxOES(GLenum func, GLclampx ref) argument
848 getDispatch()->glAlphaFuncxOES(func, ref);
/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

Completed in 209 milliseconds

12