| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
| string_util_gtest.cc | 11 size_t pos = 0; local 12 EXPECT_EQ(0ul, benchmark::stoul("0", &pos)); 13 EXPECT_EQ(1ul, pos); 16 size_t pos = 0; local 17 EXPECT_EQ(7ul, benchmark::stoul("7", &pos)); 18 EXPECT_EQ(1ul, pos); 21 size_t pos = 0; local 22 EXPECT_EQ(135ul, benchmark::stoul("135", &pos)); 23 EXPECT_EQ(3ul, pos); 27 size_t pos = 0 local 33 size_t pos = 0; local 39 size_t pos = 0; local 44 size_t pos = 0; local 49 size_t pos = 0; local 54 size_t pos = 0; local 59 size_t pos = 0; local 70 size_t pos = 0; local 75 size_t pos = 0; local 80 size_t pos = 0; local 85 size_t pos = 0; local 90 size_t pos = 0; local 95 size_t pos = 0; local 100 size_t pos = 0; local 105 size_t pos = 0; local 116 size_t pos = 0; local 121 size_t pos = 0; local 126 size_t pos = 0; local 131 size_t pos = 0; local 136 size_t pos = 0; local [all...] |
| /src/external/bsd/ipf/dist/tools/ |
| lex_var.h | 12 extern long pos; 15 if (pos >= string_start && pos <= string_end) { \ 16 buf[0] = string_val[pos - string_start]; \ 17 pos++; \ 30 pos++; \ 38 # define input() (((pos >= string_start) && (pos < string_end)) ? \ 39 yysptr = yysbuf, string_val[pos++ - string_start] : \ 41 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : [all...] |
| /src/external/bsd/mdocml/dist/ |
| tbl_opts.c | 66 arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key) 70 while (p[*pos] == ' ' || p[*pos] == '\t') 71 (*pos)++; 76 if (p[*pos] == '(') { 77 (*pos)++; 78 while (p[*pos + len] != ')') 85 ln, *pos, "%.*s", len, p + *pos); 91 tbl->opts.tab = p[*pos]; 125 int i, pos, len; local [all...] |
| tbl_layout.c | 66 int ln, const char *p, int *pos) 75 while (p[*pos] == ' ' || p[*pos] == '\t') 76 (*pos)++; 80 if (strchr(".,-=^_ACLNRSaclnrs", p[*pos]) != NULL) 85 if ('(' == p[*pos]) { 86 (*pos)++; 87 while (p[*pos] && ')' != p[*pos]) 88 (*pos)++ [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| ftello.c | 26 long pos; local 27 pos = ftell (stream); 29 return (off_t) pos;
|
| /src/crypto/external/apache2/openssl/dist/test/testutil/ |
| random.c | 21 static unsigned int pos = 3; local 23 if (pos == 31) 24 pos = 0; 25 test_random_state[pos] += test_random_state[(pos + 28) % 31]; 26 return test_random_state[pos++] / 2;
|
| /src/crypto/external/bsd/openssl/dist/test/testutil/ |
| random.c | 20 static unsigned int pos = 3; local 22 if (pos == 31) 23 pos = 0; 24 test_random_state[pos] += test_random_state[(pos + 28) % 31]; 25 return test_random_state[pos++] / 2;
|
| /src/crypto/external/bsd/openssl.old/dist/test/testutil/ |
| random.c | 20 static unsigned int pos = 3; local 22 if (pos == 31) 23 pos = 0; 24 test_random_state[pos] += test_random_state[(pos + 28) % 31]; 25 return test_random_state[pos++] / 2;
|
| /src/sys/arch/amiga/stand/bootblock/boot/ |
| twiddle.c | 43 static short int pos; local 45 putchar(chars[pos++ & 3]);
|
| /src/external/bsd/ipf/dist/lib/ |
| resetlexer.c | 16 long pos = 0; variable 24 pos = 0;
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| table.c | 39 char *pos; member in struct:_open_table 122 file->pos = file->buffer; 169 while (*file->pos == '\0') 180 while (*file->pos != '\0' 181 && *file->pos != '\n' 182 && isspace(*file->pos)) 183 file->pos++; 185 if (*file->pos == '#') { 187 file->pos++; 188 } while (*file->pos != '\0' && *file->pos != '\n') [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| table.c | 39 char *pos; member in struct:_open_table 122 file->pos = file->buffer; 169 while (*file->pos == '\0') 180 while (*file->pos != '\0' 181 && *file->pos != '\n' 182 && isspace(*file->pos)) 183 file->pos++; 185 if (*file->pos == '#') { 187 file->pos++; 188 } while (*file->pos != '\0' && *file->pos != '\n') [all...] |
| /src/external/bsd/wpa/dist/src/rsn_supp/ |
| wpa_ie.c | 45 u8 *pos; local 57 pos = (u8 *) (hdr + 1); 65 RSN_SELECTOR_PUT(pos, suite); 66 pos += WPA_SELECTOR_LEN; 68 *pos++ = 1; 69 *pos++ = 0; 78 RSN_SELECTOR_PUT(pos, suite); 79 pos += WPA_SELECTOR_LEN; 81 *pos++ = 1; 82 *pos++ = 0 134 u8 *pos; local 283 u8 *pos, *len; local 368 u8 *pos = rsnxe; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
| list.h | 300 * Loop through the list given by head and set pos to struct in the list. 311 * @param pos Iterator variable of the type of the list elements. 316 #define list_for_each_entry(pos, head, member) \ 317 for (pos = __container_of((head)->next, pos, member); \ 318 &pos->member != (head); \ 319 pos = __container_of(pos->member.next, pos, member)) 328 #define list_for_each_entry_safe(pos, tmp, head, member) [all...] |
| /src/sys/lib/libsa/ |
| twiddle.c | 54 static unsigned int pos; local 57 if ((pos & TWIDDLE_MASK) == 0) { 58 putchar(TWIDDLE_CHARS[(pos >> TWIDDLE_DELAY) & 3]); 61 pos++;
|
| /src/external/bsd/less/dist/ |
| forwback.c | 75 POSITION pos; local 92 pos = position(BOTTOM_PLUS_ONE); 93 return (pos == NULL_POSITION || pos == ch_length()); 101 POSITION pos; local 108 pos = position(0); 109 return (pos == NULL_POSITION || pos == 0); 130 static POSITION forw_line_pfx(POSITION pos, int pfx, int skipeol) 139 pos = forw_line_seg(pos, skipeol, FALSE, FALSE) 164 POSITION pos = ch_zero(); \/* header lines are at beginning of file *\/ local 462 POSITION pos; local 510 POSITION pos; local 544 POSITION pos = ch_zero(); local [all...] |
| jump.c | 32 POSITION pos; local 58 pos = back_line(end_pos); 59 if (pos == NULL_POSITION) 63 jump_loc(pos, sc_height-1); 91 POSITION pos; local 100 pos = find_pos(linenum); 101 if (pos != NULL_POSITION && ch_seek(pos) == 0) 104 set_attnpos(pos); 105 jump_loc(pos, jump_sline) 141 POSITION pos, len; local [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| config.c | 41 char *pos, *end, *sstart; local 55 pos = s; 58 while (*pos == ' ' || *pos == '\t' || *pos == '\r') 59 pos++; 62 if (*pos == '#' || *pos == '\n' || *pos == '\0') 69 sstart = pos; [all...] |
| ext_password_test.c | 47 char *pos, *pos2; local 52 pos = data->params; 53 if (pos == NULL) 57 while (pos && *pos) { 58 if (os_strncmp(pos, name, nlen) == 0 && pos[nlen] == '=') { 60 pos += nlen + 1; 61 pos2 = pos; 64 buf = ext_password_alloc(pos2 - pos); [all...] |
| uuid.c | 17 const char *pos; local 20 pos = str; 23 if (hexstr2bin(pos, opos, 4)) 25 pos += 8; 28 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) 30 pos += 4; 33 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) 35 pos += 4 [all...] |
| /src/external/bsd/wpa/dist/hostapd/ |
| nt_password_hash.c | 19 char *password, buf[64], *pos; local 29 pos = buf; 30 while (*pos != '\0') { 31 if (*pos == '\r' || *pos == '\n') { 32 *pos = '\0'; 35 pos++;
|
| /src/external/mit/libuv/dist/src/unix/ |
| random-getentropy.c | 40 size_t pos; local 49 for (pos = 0, stride = 256; pos + stride < buflen; pos += stride) 50 if (uv__getentropy((char *) buf + pos, stride)) 53 if (uv__getentropy((char *) buf + pos, buflen - pos))
|
| /src/lib/libc/stdio/ |
| ftell.c | 56 off_t pos; local 73 pos = fp->_offset; 75 pos = (*fp->_seek)(fp->_cookie, (off_t)0, SEEK_CUR); 76 if (pos == -1L) { 78 return (long)pos; 87 pos -= fp->_r; 89 pos -= fp->_ur; 96 pos += fp->_p - fp->_bf._base; 100 if (__long_overflow(pos)) { 105 return (long)pos; [all...] |
| /src/external/bsd/tradcpp/dist/ |
| output.c | 105 size_t pos, start; local 111 for (pos = 0; pos < len - 1; pos++) { 112 if (!inquote && buf[pos] == '/' && buf[pos+1] == '*') { 114 if (pos > start) { 115 dowrite(buf + start, pos - start); 117 start = pos; 118 pos += 2 [all...] |
| /src/external/gpl2/groff/dist/src/include/ |
| refid.h | 25 int pos; member in class:reference_id 28 reference_id(int fid, int off) : filename_id(fid), pos(off) { } 29 unsigned hash() const { return (filename_id << 4) + pos; } 36 return r1.filename_id == r2.filename_id && r1.pos == r2.pos;
|