Searched refs:nibbles (Results 1 – 10 of 10) sorted by relevance
116 int off = 1, nibbles = 0; \130 nibbles = off - 2; \133 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \310 int nibbles = 0; \320 nibbles = ((data[0] & 0xf0) >> 4) + 1; \321 if (nibbles > maxnibbles || (nibbles >> 1) + 1 > len) \323 len = (nibbles >> 1) + 1; \329 while (nibbles > 0) { \331 if (nibbles & 0x1) \332 number |= data[nibbles >> 1] & 0x0f; \[all …]
95 int nibbles = 0; in parsePFA() local103 nibbles++; in parsePFA()105 *dataLen = (nibbles + 1) / 2; in parsePFA()
211 nibbles = []218 nibbles.append(realNibblesDict[c])219 nibbles.append(0xf)220 if len(nibbles) % 2:221 nibbles.append(0xf)223 for i in range(0, len(nibbles), 2):224 d = d + bytechr(nibbles[i] << 4 | nibbles[i+1])
222 CheckedError Parser::ParseHexNum(int nibbles, uint64_t *val) { in ParseHexNum() argument223 for (int i = 0; i < nibbles; i++) in ParseHexNum()225 return Error("escape code must be followed by " + NumToString(nibbles) + in ParseHexNum()227 std::string target(cursor_, cursor_ + nibbles); in ParseHexNum()229 cursor_ += nibbles; in ParseHexNum()
528 FLATBUFFERS_CHECKED_ERROR ParseHexNum(int nibbles, uint64_t *val);
2133 + // Mapping table from 6-bit nibbles to Base64 characters.2142 + // Mapping table from Base64 characters to 6-bit nibbles.
4705 + // Mapping table from 6-bit nibbles to Base64 characters.4714 + // Mapping table from Base64 characters to 6-bit nibbles.
1602 // Swaps the high and low nibbles in a register.
1728 nibbles; in Magick_png_read_raw_profile() local1775 nibbles=length*2; in Magick_png_read_raw_profile()1777 for (i=0; i < (ssize_t) nibbles; i++) in Magick_png_read_raw_profile()