Home | History | Annotate | Download | only in include

Lines Matching defs:result

50    Note: The result is an int instead of a pointer to the next byte to be
59 uint64_t result = 0;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
74 *r = result;
83 Note: The result is an int instead of a pointer to the next byte to be
92 int64_t result = 0;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
107 result |= -(((uint64_t) 1) << shift);
109 *r = result;
116 Note: The result is an int instead of a pointer to the next byte to be