Home | History | Annotate | Download | only in io

Lines Matching full:count

137     int32_t         count;
143 count = 0;
153 /* increment our count */
154 ++count;
157 *len = count;
166 int32_t count, resultIdx, incVal, offset;
174 count = 0;
179 while(buffer[count] == DIGIT_0 || u_isspace(buffer[count])) {
180 count++;
185 while(ufmt_isdigit(buffer[count], 16) && count < *len) {
186 /* increment the count consumed */
187 ++count;
191 if (count - offset > (int32_t)(sizeof(void*)*NIBBLE_PER_BYTE)) {
192 offset = count - (int32_t)(sizeof(void*)*NIBBLE_PER_BYTE);
204 *len = count;
205 while(--count >= offset) {
207 uint8_t byte = (uint8_t)ufmt_digitvalue(buffer[count]);
209 if (count > offset) {
211 byte = (uint8_t)(byte + (ufmt_digitvalue(buffer[--count]) << 4));