Searched refs:tag (Results 1 – 6 of 6) sorted by relevance
32 self.tag = args[0]49 self.tag = (type << 20) | (id << 10) | size55 return not bool(self.tag & 0x80000000)59 return not bool(self.tag & 0x40000000)63 return bool(self.tag & 0x20000000)67 return not bool(self.tag & 0x10000000)71 return (self.tag & 0x7ff00000) >> 2075 return (self.tag & 0x70000000) >> 2079 return (self.tag & 0x7ff00000) >> 2083 return (self.tag & 0x000ffc00) >> 10[all …]
89 for tag in mdir.tags:90 if tag.is_('dir'):92 npath = tag.data.decode('utf8')93 dirstruct = mdir[Tag('dirstruct', tag.id, 0)]113 tag = Tag(struct.unpack('<I', gstate[0:4].ljust(4, b'\xff'))[0])115 if tag.size or not tag.isvalid:116 print(" orphans >=%d" % max(tag.size, 1))117 if tag.type:119 blocks[0], blocks[1], tag.id))
320 static inline bool lfs_tag_isvalid(lfs_tag_t tag) { in lfs_tag_isvalid() argument321 return !(tag & 0x80000000); in lfs_tag_isvalid()324 static inline bool lfs_tag_isdelete(lfs_tag_t tag) { in lfs_tag_isdelete() argument325 return ((int32_t)(tag << 22) >> 22) == -1; in lfs_tag_isdelete()328 static inline uint16_t lfs_tag_type1(lfs_tag_t tag) { in lfs_tag_type1() argument329 return (tag & 0x70000000) >> 20; in lfs_tag_type1()332 static inline uint16_t lfs_tag_type3(lfs_tag_t tag) { in lfs_tag_type3() argument333 return (tag & 0x7ff00000) >> 20; in lfs_tag_type3()336 static inline uint8_t lfs_tag_chunk(lfs_tag_t tag) { in lfs_tag_chunk() argument337 return (tag & 0x0ff00000) >> 20; in lfs_tag_chunk()[all …]
102 Entries themselves are stored as a 32-bit tag followed by a variable length106 this without duplicating the space for each tag, neighboring entries have their115 | tag ~A |---> xor -> tag A | tag ~A |---> xor -> 0xffffffff121 | tag AxB |---> xor -> tag B | tag AxB |---> xor -> tag A127 | tag BxC |---> xor -> tag C | tag BxC |---> xor -> tag B130 | | | | tag C136 One last thing to note before we get into the details around tag encoding. Each137 tag contains a valid bit used to indicate if the tag and containing commit is138 valid. This valid bit is the first bit found in the tag and the commit and can146 .-| revision count | tag ~A | \[all …]
382 uint32_t tag; member
208 Individual files contain the following tag instead of the full license text.