Searched refs:tagId (Results 1 – 7 of 7) sorted by relevance
/external/python/pyasn1/pyasn1/type/ |
D | tag.py | 57 def __init__(self, tagClass, tagFormat, tagId): argument 58 if tagId < 0: 59 raise error.PyAsn1Error('Negative tag ID (%s) not allowed' % tagId) 62 self.__tagId = tagId 63 self.__tagClassId = tagClass, tagId 111 self.__tagId & otherTag.tagId) 116 self.__tagId | otherTag.tagId) 141 def tagId(self): member in Tag 191 [(superTag.tagClass, superTag.tagId) for superTag in superTags] 197 representation = '-'.join(['%s:%s:%s' % (x.tagClass, x.tagFormat, x.tagId) [all …]
|
/external/python/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 34 tagClass, tagFormat, tagId = singleTag 39 if tagId < 31: 40 return encodedTag | tagId, 43 substrate = tagId & 0x7f, 45 tagId >>= 7 47 while tagId: 48 substrate = (0x80 | (tagId & 0x7f),) + substrate 49 tagId >>= 7
|
D | decoder.py | 1325 tagId = integerTag & 0x1F 1327 if tagId == 0x1F: 1330 tagId = 0 1336 tagId <<= 7 1337 tagId |= (integerTag & 0x7F) 1349 tagClass=tagClass, tagFormat=tagFormat, tagId=tagId
|
/external/python/rsa/rsa/ |
D | asn1.py | 36 implicitTag=tag.Tag(tagClass=0, tagFormat=0, tagId=3))),
|
/external/mesa3d/include/GL/ |
D | glext.h | 10785 typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint bufSize, … 10787 GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint bufSize, GLint *buffe… 10795 typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); 10799 GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString);
|
/external/swiftshader/include/GL/ |
D | glext.h | 10599 typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint bufSize, … 10601 GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint bufSize, GLint *buffe… 10609 typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); 10613 GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString);
|
/external/libepoxy/prebuilt-intermediates/include/epoxy/ |
D | gl_generated.h | 9023 typedef GLint (GLAPIENTRY *PFNGLQUERYRESOURCENVPROC)(GLenum queryType, GLint tagId, GLuint bufSize,… 9024 typedef void (GLAPIENTRY *PFNGLQUERYRESOURCETAGNVPROC)(GLint tagId, const GLchar * tagString); 14462 EPOXY_PUBLIC GLint (EPOXY_CALLSPEC *epoxy_glQueryResourceNV)(GLenum queryType, GLint tagId, GLuint … 14464 EPOXY_PUBLIC void (EPOXY_CALLSPEC *epoxy_glQueryResourceTagNV)(GLint tagId, const GLchar * tagStrin…
|