Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 25 of 984) sorted by relevance

12345678910>>...40

/netbsd-src/sys/arch/prep/stand/boot/
H A Dpcconstab.US41 0, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 0- 7 */
42 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 8-15 */
43 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 16-23 */
44 ASCII, ASCII, ASCII, ASCII, ASCII, CTL, ASCII, ASCII, /* scan 24-31 */
45 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 32-39 */
46 ASCII, ASCII, SHF, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 40-47 */
47 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, SHF, ASCII, /* scan 48-55 */
48 ALT, ASCII, CPS, FUNC, FUNC, FUNC, FUNC, FUNC, /* scan 56-63 */
49 FUNC, FUNC, FUNC, FUNC, FUNC, NUM,SCROLL, ASCII, /* scan 64-71 */
50 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 72-79 */
[all …]
/netbsd-src/sys/arch/bebox/stand/boot/
H A Dpcconstab.US41 0, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 0- 7 */
42 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 8-15 */
43 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 16-23 */
44 ASCII, ASCII, ASCII, ASCII, ASCII, CTL, ASCII, ASCII, /* scan 24-31 */
45 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 32-39 */
46 ASCII, ASCII, SHF, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 40-47 */
47 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, SHF, ASCII, /* scan 48-55 */
48 ALT, ASCII, CPS, FUNC, FUNC, FUNC, FUNC, FUNC, /* scan 56-63 */
49 FUNC, FUNC, FUNC, FUNC, FUNC, NUM,SCROLL, ASCII, /* scan 64-71 */
50 ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, /* scan 72-79 */
[all …]
/netbsd-src/sys/kern/
H A Dsubr_blist.c73 * set to -1) on the scan. The memory allocation is only large enough
152 static blist_blkno_t blst_leaf_alloc(blmeta_t *scan, blist_blkno_t blk,
154 static blist_blkno_t blst_meta_alloc(blmeta_t *scan, blist_blkno_t blk,
156 static void blst_leaf_free(blmeta_t *scan, blist_blkno_t relblk, int count);
157 static void blst_meta_free(blmeta_t *scan, blist_blkno_t freeBlk,
160 static void blst_copy(blmeta_t *scan, blist_blkno_t blk, blist_blkno_t radix,
162 static int blst_leaf_fill(blmeta_t *scan, blist_blkno_t blk, int count);
163 static blist_blkno_t blst_meta_fill(blmeta_t *scan, blist_blkno_t allocBlk,
166 static blist_blkno_t blst_radix_init(blmeta_t *scan, blist_blkno_t radix,
169 static void blst_radix_print(blmeta_t *scan, blist_blkno_
364 blst_leaf_alloc(blmeta_t * scan,blist_blkno_t blk,int count) blst_leaf_alloc() argument
440 blst_meta_alloc(blmeta_t * scan,blist_blkno_t blk,blist_blkno_t count,blist_blkno_t radix,blist_blkno_t skip) blst_meta_alloc() argument
526 blst_leaf_free(blmeta_t * scan,blist_blkno_t blk,int count) blst_leaf_free() argument
570 blst_meta_free(blmeta_t * scan,blist_blkno_t freeBlk,blist_blkno_t count,blist_blkno_t radix,blist_blkno_t skip,blist_blkno_t blk) blst_meta_free() argument
669 blst_copy(blmeta_t * scan,blist_blkno_t blk,blist_blkno_t radix,blist_blkno_t skip,blist_t dest,blist_blkno_t count) blst_copy() argument
764 blst_leaf_fill(blmeta_t * scan,blist_blkno_t blk,int count) blst_leaf_fill() argument
792 blst_meta_fill(blmeta_t * scan,blist_blkno_t allocBlk,blist_blkno_t count,blist_blkno_t radix,blist_blkno_t skip,blist_blkno_t blk) blst_meta_fill() argument
876 blst_radix_init(blmeta_t * scan,blist_blkno_t radix,blist_blkno_t skip,blist_blkno_t count) blst_radix_init() argument
949 blst_radix_print(blmeta_t * scan,blist_blkno_t blk,blist_blkno_t radix,blist_blkno_t skip,int tab) blst_radix_print() argument
[all...]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dscan_dir.c114 #define SCAN_DIR_PATH(scan) (scan->current->path) argument
119 char *scan_dir_path(SCAN_DIR *scan) in scan_dir_path() argument
121 return (SCAN_DIR_PATH(scan)); in scan_dir_path()
126 void scan_dir_push(SCAN_DIR *scan, const char *path) in scan_dir_push() argument
132 if (scan->current) in scan_dir_push()
133 info->path = concatenate(SCAN_DIR_PATH(scan), "/", path, (char *) 0); in scan_dir_push()
140 info->parent = scan->current; in scan_dir_push()
141 scan->current = info; in scan_dir_push()
146 SCAN_DIR *scan_dir_pop(SCAN_DIR *scan) in scan_dir_pop() argument
149 SCAN_INFO *info = scan->current; in scan_dir_pop()
[all …]
/netbsd-src/external/bsd/less/dist/
H A Dregexp.c216 register char *scan; local
258 scan = r->program+1; /* First BRANCH. */
259 if (OP(regnext(scan)) == END) { /* Only one top-level choice. */
260 scan = OPERAND(scan);
263 if (OP(scan) == EXACTLY)
264 r->regstart = *OPERAND(scan);
265 else if (OP(scan) == BOL)
279 for (; scan != NULL; scan = regnext(scan))
280 if (OP(scan) == EXACTLY && ((int) strlen(OPERAND(scan))) >= len) {
281 longest = OPERAND(scan);
[all …]
/netbsd-src/lib/libcompat/regexp/
H A Dregexp.c213 char *scan; local
259 scan = r->program+1; /* First BRANCH. */
260 if (OP(regnext(scan)) == END) { /* Only one top-level choice. */
261 scan = OPERAND(scan);
264 if (OP(scan) == EXACTLY)
265 r->regstart = *OPERAND(scan);
266 else if (OP(scan) == BOL)
280 for (; scan != NULL; scan = regnext(scan))
281 if (OP(scan) == EXACTLY && (int) strlen(OPERAND(scan)) >= len) {
282 longest = OPERAND(scan);
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/
H A DCMakeLists.txt1 option(CLANG_INSTALL_SCANBUILD "Install the scan-build tool" ON)
7 scan-build
8 scan-build.bat
18 scan-build
32 scan-build.1)
51 COMPONENT scan-build)
65 COMPONENT scan-build)
79 COMPONENT scan-build)
83 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/share/scan-build/${ShareFile}
85 ${CMAKE_BINARY_DIR}/share/scan-build
[all …]
/netbsd-src/usr.bin/rpcgen/
H A Drpc_parse.c108 scan(TOK_SEMICOLON, &tok); in get_definition()
129 scan(TOK_IDENT, &tok); in def_struct()
131 scan(TOK_LBRACE, &tok); in def_struct()
139 scan(TOK_SEMICOLON, &tok); in def_struct()
160 scan(TOK_IDENT, &tok); in def_program()
162 scan(TOK_LBRACE, &tok); in def_program()
165 scan(TOK_VERSION, &tok); in def_program()
167 scan(TOK_IDENT, &tok); in def_program()
170 scan(TOK_LBRACE, &tok); in def_program()
180 scan(TOK_IDENT, &tok); in def_program()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-view/
H A DCMakeLists.txt1 option(CLANG_INSTALL_SCANVIEW "Install the scan-view tool" ON)
4 scan-view)
24 COMPONENT scan-view)
28 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile}
30 ${CMAKE_BINARY_DIR}/share/scan-view
33 ${CMAKE_BINARY_DIR}/share/scan-view/
35 list(APPEND Depends ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile})
37 DESTINATION share/scan-view
38 COMPONENT scan-view)
41 add_custom_target(scan-view ALL DEPENDS ${Depends})
[all …]
/netbsd-src/external/zlib/pigz/dist/zopfli/
H A Dlz77.c105 static const unsigned char* GetMatch(const unsigned char* scan, in GetMatch() argument
112 while (scan < safe_end && *((size_t*)scan) == *((size_t*)match)) { in GetMatch()
113 scan += 8; in GetMatch()
118 while (scan < safe_end in GetMatch()
119 && *((unsigned int*)scan) == *((unsigned int*)match)) { in GetMatch()
120 scan += 4; in GetMatch()
125 while (scan < safe_end && *scan == *match && *++scan == *++match in GetMatch()
126 && *++scan == *++match && *++scan == *++match in GetMatch()
127 && *++scan == *++match && *++scan == *++match in GetMatch()
128 && *++scan == *++match && *++scan == *++match) { in GetMatch()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/
H A Ddrm_mm.c830 void drm_mm_scan_init_with_range(struct drm_mm_scan *scan, in drm_mm_scan_init_with_range() argument
843 scan->mm = mm; in drm_mm_scan_init_with_range()
848 scan->color = color; in drm_mm_scan_init_with_range()
849 scan->alignment = alignment; in drm_mm_scan_init_with_range()
850 scan->remainder_mask = is_power_of_2(alignment) ? alignment - 1 : 0; in drm_mm_scan_init_with_range()
851 scan->size = size; in drm_mm_scan_init_with_range()
852 scan->mode = mode; in drm_mm_scan_init_with_range()
855 scan->range_start = start; in drm_mm_scan_init_with_range()
856 scan->range_end = end; in drm_mm_scan_init_with_range()
858 scan->hit_start = U64_MAX; in drm_mm_scan_init_with_range()
[all …]
/netbsd-src/external/gpl3/binutils/dist/ld/
H A Dldmisc.c74 const char *scan; in vfinfo() local
107 scan = fmt; in vfinfo()
108 while (*scan != '\0') in vfinfo()
110 while (*scan != '%' && *scan != '\0') in vfinfo()
111 scan++; in vfinfo()
113 if (*scan == '%') in vfinfo()
115 scan++; in vfinfo()
118 if (*scan != '0' && ISDIGIT (*scan) && scan[1] == '$') in vfinfo()
120 arg_no = *scan - '1'; in vfinfo()
121 scan += 2; in vfinfo()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A Dldmisc.c72 const char *scan; in vfinfo() local
102 scan = fmt; in vfinfo()
103 while (*scan != '\0') in vfinfo()
105 while (*scan != '%' && *scan != '\0') in vfinfo()
106 scan++; in vfinfo()
108 if (*scan == '%') in vfinfo()
110 scan++; in vfinfo()
113 if (*scan != '0' && ISDIGIT (*scan) && scan[1] == '$') in vfinfo()
115 arg_no = *scan - '1'; in vfinfo()
116 scan += 2; in vfinfo()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/
H A Dscan.cgs1 # frv testcase for scan $GRi,$GRj,$GRk
8 .global scan
9 scan:
12 scan gr7,gr8,gr9
19 scan gr7,gr8,gr9
26 scan gr7,gr8,gr9
33 scan gr7,gr8,gr9
40 scan gr7,gr8,gr9
47 scan gr7,gr8,gr9
54 scan gr7,gr8,gr9
[all …]
/netbsd-src/external/bsd/ntp/dist/libntp/
H A Dgetopt.c33 static char *scan = NULL; /* Private scan pointer. */ variable
68 scan = NULL; in ntp_getopt()
72 if (scan == NULL || *scan == '\0') { in ntp_getopt()
84 scan = argv[ntp_optind++]+1; in ntp_getopt()
87 c = *scan++; in ntp_getopt()
99 if (*scan != '\0') { in ntp_getopt()
100 ntp_optarg = scan; in ntp_getopt()
101 scan = NULL; in ntp_getopt()
/netbsd-src/sys/netcan/
H A Dcan_pcb.c121 can_pcbbind(void *v, struct sockaddr_can *scan, struct lwp *l) in can_pcbbind() argument
125 if (scan->can_family != AF_CAN) in can_pcbbind()
127 if (scan->can_len != sizeof(*scan)) in can_pcbbind()
130 if (scan->can_ifindex != 0) { in can_pcbbind()
131 canp->canp_ifp = if_byindex(scan->can_ifindex); in can_pcbbind()
152 can_pcbconnect(void *v, struct sockaddr_can *scan) in can_pcbconnect() argument
160 if (scan->can_family != AF_CAN) in can_pcbconnect()
162 if (scan->can_len != sizeof(*scan)) in can_pcbconnect()
166 memcpy(&canp->canp_dst, scan, sizeof(struct sockaddr_can)); in can_pcbconnect()
227 can_setsockaddr(struct canpcb *canp, struct sockaddr_can *scan) in can_setsockaddr() argument
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-ndb/
H A Dsearch.cpp113 NdbIndexScanOperation *scan, NdbScanFilter *sf, int *bounds ) in ndb_filter_set() argument
130 scan->end_of_bound( (*bounds)++ ); in ndb_filter_set()
137 if ( ndb_filter_set( op, ni, f, indexed, scan, sf, bounds )) in ndb_filter_set()
172 rc = scan->setBound( ai->na_ixcol - IDX_COLUMN, in ndb_filter_set()
197 rc = scan->setBound( ai->na_ixcol - IDX_COLUMN, bt, buf ); in ndb_filter_set()
278 NdbIndexScanOperation *scan; in ndb_oc_search() local
299 scan = txn->getNdbIndexScanOperation( INDEX_NAME, DN2ID_TABLE ); in ndb_oc_search()
300 if ( !scan ) in ndb_oc_search()
302 scan->readTuples( NdbOperation::LM_CommittedRead ); in ndb_oc_search()
310 scan = (NdbIndexScanOperation *)txn->getNdbScanOperation( myTable ); in ndb_oc_search()
[all …]
/netbsd-src/external/cddl/osnet/dist/uts/common/zmod/
H A Ddeflate.c1038 register Bytef *scan = s->window + s->strstart; /* current string */ local
1056 register ush scan_start = *(ushf*)scan;
1057 register ush scan_end = *(ushf*)(scan+best_len-1);
1060 register Byte scan_end1 = scan[best_len-1];
1061 register Byte scan_end = scan[best_len];
1108 Assert(scan[2] == match[2], "scan[2]?");
1109 scan++, match++;
1111 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1112 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1113 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
[all …]
/netbsd-src/external/gpl3/binutils/dist/zlib/
H A Ddeflate.c1281 register Bytef *scan = s->window + s->strstart; /* current string */ local
1299 register ush scan_start = *(ushf*)scan;
1300 register ush scan_end = *(ushf*)(scan+best_len-1);
1303 register Byte scan_end1 = scan[best_len-1];
1304 register Byte scan_end = scan[best_len];
1351 Assert(scan[2] == match[2], "scan[2]?");
1352 scan++, match++;
1354 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1355 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1356 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
[all …]
/netbsd-src/external/gpl3/gdb/dist/zlib/
H A Ddeflate.c1281 register Bytef *scan = s->window + s->strstart; /* current string */ local
1299 register ush scan_start = *(ushf*)scan;
1300 register ush scan_end = *(ushf*)(scan+best_len-1);
1303 register Byte scan_end1 = scan[best_len-1];
1304 register Byte scan_end = scan[best_len];
1351 Assert(scan[2] == match[2], "scan[2]?");
1352 scan++, match++;
1354 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1355 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1356 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/zlib/
H A Ddeflate.c1281 register Bytef *scan = s->window + s->strstart; /* current string */ local
1299 register ush scan_start = *(ushf*)scan;
1300 register ush scan_end = *(ushf*)(scan+best_len-1);
1303 register Byte scan_end1 = scan[best_len-1];
1304 register Byte scan_end = scan[best_len];
1351 Assert(scan[2] == match[2], "scan[2]?");
1352 scan++, match++;
1354 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1355 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1356 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
[all …]
/netbsd-src/external/bsd/ntp/dist/ntpd/
H A Drc_cmdlength.c23 const char *scan; in remoteconfig_cmdlength() local
34 for (scan = src_buf; scan != src_end; ++scan) { in remoteconfig_cmdlength()
35 ch = scan[0]; in remoteconfig_cmdlength()
39 return (size_t)(scan - src_buf); in remoteconfig_cmdlength()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/clang/tools/scan-build/
H A DBUILD.gn1 group("scan-build") {
11 sources = [ "bin/scan-build" ]
15 sources += [ "bin/scan-build.bat" ]
35 sources = [ "man/scan-build.1" ]
41 "share/scan-build/scanview.css",
42 "share/scan-build/sorttable.js",
44 outputs = [ "$root_build_dir/share/scan-build/{{source_file_part}}" ]
/netbsd-src/sys/arch/hpcsh/dev/
H A Dpfckbd.c290 } scan[] = { in pfckbd_callout_hp() local
310 _reg_write_2(SH7709_PDCR, dc | scan[column].dc); in pfckbd_callout_hp()
311 _reg_write_2(SH7709_PECR, ec | scan[column].ec); in pfckbd_callout_hp()
315 _reg_write_1(SH7709_PDDR, scan[column].d); in pfckbd_callout_hp()
316 _reg_write_1(SH7709_PEDR, scan[column].e); in pfckbd_callout_hp()
389 } scan[] = { in pfckbd_callout_hitachi() local
408 _reg_write_2(SH7709_PCCR, cc | scan[i].cc); in pfckbd_callout_hitachi()
409 _reg_write_2(SH7709_PDCR, dc | scan[i].dc); in pfckbd_callout_hitachi()
410 _reg_write_2(SH7709_PECR, ec | scan[i].ec); in pfckbd_callout_hitachi()
418 _reg_write_1(SH7709_PCDR, cd | scan[i].c); in pfckbd_callout_hitachi()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dmail_scan_dir.c45 char *mail_scan_dir_next(SCAN_DIR *scan) in mail_scan_dir_next() argument
55 if ((name = scan_dir_next(scan)) == 0) { in mail_scan_dir_next()
56 if (scan_dir_pop(scan) == 0) in mail_scan_dir_next()
59 scan_dir_push(scan, name); in mail_scan_dir_next()

12345678910>>...40