Home | History | Annotate | Download | only in misc

Lines Matching full:bytechr

154 		fourByteOp = bytechr(29)
156 fourByteOp = bytechr(255)
161 def encodeInt(value, fourByteOp=fourByteOp, bytechr=bytechr,
164 code = bytechr(value + 139)
167 code = bytechr((value >> 8) + 247) + bytechr(value & 0xFF)
170 code = bytechr((value >> 8) + 251) + bytechr(value & 0xFF)
174 code = bytechr(28) + pack(">h", value)
188 code = bytechr(255) + pack(">l", value)
222 d = bytechr(30)
224 d = d + bytechr(nibbles[i] << 4 | nibbles[i+1])
289 bytecode.extend(bytechr(b) for b in opcodes[token])
409 maskBytes = maskBytes + bytechr(binary2num(mask[j:j+8]))