Lines Matching refs:result
405 uint32_t result = DecodeULeb128(next_, &size);
408 return result;
413 int32_t result = DecodeSLeb128(next_, &size);
416 return result;
423 uint32_t result = 0;
427 DCHECK_LT(shift, 8 * static_cast<int>(sizeof(result)));
428 result |= (*current & 0x7F) << shift;
435 return result;
443 int32_t result = 0;
449 DCHECK_LT(shift, 8 * static_cast<int>(sizeof(result)));
450 result |= (chunk & 0x7F) << shift;
454 // Sign extend the result if the last chunk has the sign bit set.
455 if (chunk & kSignBitMask) result |= (~0ull) << shift;
460 return result;