Searched refs:tagId (Results 1 – 6 of 6) 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 109 self.__tagId & otherTag.tagId) 114 self.__tagId | otherTag.tagId) 139 def tagId(self): member in Tag 189 [(superTag.tagClass, superTag.tagId) for superTag in superTags] 195 representation = '-'.join(['%s:%s:%s' % (x.tagClass, x.tagFormat, x.tagId) [all …]
|
/external/python/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 30 tagClass, tagFormat, tagId = singleTag 34 if tagId < 31: 35 return encodedTag | tagId, 37 substrate = tagId & 0x7f, 38 tagId >>= 7 39 while tagId: 40 substrate = (0x80 | (tagId & 0x7f),) + substrate 41 tagId >>= 7
|
D | decoder.py | 1108 tagId = integerTag & 0x1F 1109 if tagId == 0x1F: 1112 tagId = 0 1117 tagId <<= 7 1118 tagId |= (integerTag & 0x7F) 1127 tagClass=tagClass, tagFormat=tagFormat, tagId=tagId
|
/external/python/rsa/rsa/ |
D | asn1.py | 38 implicitTag=tag.Tag(tagClass=0, tagFormat=0, tagId=3))),
|
/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/mesa3d/include/GL/ |
D | glext.h | 10557 typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint bufSize, … 10559 GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint bufSize, GLint *buffe… 10567 typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); 10571 GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString);
|