Lines Matching full:by
9 * Unless required by applicable law or agreed to in writing, software
214 … // ii. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
231 // 1. Increase k by 1. in Encode()
252 … // iv. Let Octets be the array of octets resulting by applying the UTF-8 transformation to V, in Encode()
259 … // 3. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
260 // 4. Increase j by 1. in Encode()
269 … << hexStr.at(joct & BIT_MASK); // 4: means shift right by 4 digits in Encode()
274 // e. Increase k by 1. in Encode()
286 uint8_t res = ((idxf << 4U) | idxb) & BIT_MASK_FF; // NOLINT 4: means shift left by 4 digits in GetValueFromTwoHex()
315 …// iv. Let B be the 8-bit value represented by the two hexadecimal digits at index (k + 1) and (… in Decode()
316 // v. Increase k by 2. in Decode()
371 // a. Increase k by 1. in Decode()
372 // d. Let B be the 8-bit value represented by the two hexadecimal digits at in Decode()
374 // f. Increase k by 2. in Decode()
376 // h. Increase j by 1. in Decode()
402 if (k + (3 * (n - 1)) >= strLen) { // 3: means multiply by 3 in Decode()
437 … // 8. Let V be the value obtained by applying the UTF-8 transformation to Octets, that is, in Decode()
458 base::utf_helper::DECODE_LEAD_LOW); // 10: means shift left by 10 digits in Decode()
464 // e. Let R be a new String value computed by concatenating the previous value of R and S. in Decode()
465 // f. Increase k by 1. in Decode()