HomeSort by: relevance | last modified time | path
    Searched refs:scan (Results 1 - 25 of 140) sorted by relevancy

1 2 3 4 5 6

  /src/tools/lex/
Makefile 17 scan.c: __BUILD
21 scan.c: parse.h
24 CLEANFILES+=scan.c parse.c parse.h
Makefile 17 scan.c: __BUILD
21 scan.c: parse.h
24 CLEANFILES+=scan.c parse.c parse.h
  /src/sys/kern/
subr_blist.c 73 * 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_t blk
    [all...]
subr_blist.c 73 * 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_t blk
    [all...]
  /src/lib/libcompat/regexp/
regexp.c 167 static char *regparse; /* Input-scan pointer. */
213 char *scan; local in function:__compat_regcomp
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)
728 char *scan; local in function:regtail
903 char *scan; \/* Current node. *\/ local in function:regmatch
1103 char *scan; local in function:regrepeat
    [all...]
regexp.c 167 static char *regparse; /* Input-scan pointer. */
213 char *scan; local in function:__compat_regcomp
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)
728 char *scan; local in function:regtail
903 char *scan; \/* Current node. *\/ local in function:regmatch
1103 char *scan; local in function:regrepeat
    [all...]
  /src/usr.bin/rpcgen/
rpc_parse.c 108 scan(TOK_SEMICOLON, &tok);
129 scan(TOK_IDENT, &tok);
131 scan(TOK_LBRACE, &tok);
139 scan(TOK_SEMICOLON, &tok);
160 scan(TOK_IDENT, &tok);
162 scan(TOK_LBRACE, &tok);
165 scan(TOK_VERSION, &tok);
167 scan(TOK_IDENT, &tok);
170 scan(TOK_LBRACE, &tok);
180 scan(TOK_IDENT, &tok)
    [all...]
rpc_parse.c 108 scan(TOK_SEMICOLON, &tok);
129 scan(TOK_IDENT, &tok);
131 scan(TOK_LBRACE, &tok);
139 scan(TOK_SEMICOLON, &tok);
160 scan(TOK_IDENT, &tok);
162 scan(TOK_LBRACE, &tok);
165 scan(TOK_VERSION, &tok);
167 scan(TOK_IDENT, &tok);
170 scan(TOK_LBRACE, &tok);
180 scan(TOK_IDENT, &tok)
    [all...]
  /src/sys/netcan/
can_pcb.c 121 can_pcbbind(void *v, struct sockaddr_can *scan, struct lwp *l)
125 if (scan->can_family != AF_CAN)
127 if (scan->can_len != sizeof(*scan))
130 if (scan->can_ifindex != 0) {
131 canp->canp_ifp = if_byindex(scan->can_ifindex);
152 can_pcbconnect(void *v, struct sockaddr_can *scan)
160 if (scan->can_family != AF_CAN)
162 if (scan->can_len != sizeof(*scan))
    [all...]
can_pcb.c 121 can_pcbbind(void *v, struct sockaddr_can *scan, struct lwp *l)
125 if (scan->can_family != AF_CAN)
127 if (scan->can_len != sizeof(*scan))
130 if (scan->can_ifindex != 0) {
131 canp->canp_ifp = if_byindex(scan->can_ifindex);
152 can_pcbconnect(void *v, struct sockaddr_can *scan)
160 if (scan->can_family != AF_CAN)
162 if (scan->can_len != sizeof(*scan))
    [all...]
can.h 124 #define scantosa(scan) ((struct sockaddr *)(scan))
can.h 124 #define scantosa(scan) ((struct sockaddr *)(scan))
  /src/tests/sbin/ifconfig/
t_repeated_scan.sh 69 ifconfig $i list scan >/dev/null 2>&1
72 echo "Skipping $i; scan not supported"
78 ifconfig $i list scan >/dev/null 2>&1
t_repeated_scan.sh 69 ifconfig $i list scan >/dev/null 2>&1
72 echo "Skipping $i; scan not supported"
78 ifconfig $i list scan >/dev/null 2>&1
  /src/sys/external/bsd/drm2/dist/drm/
drm_mm.c 781 * DOC: lru scan roster
791 * interfaces. First a scan operation needs to be initialized with
801 * in the scan mode no other operation is allowed.
804 * reported true) in the scan, and any overlapping nodes after color adjustment
808 * scan operation even begins this is linear in the number of objects. It
814 * @scan: scan state
815 * @mm: drm_mm to scan
827 * As long as the scan list is non-empty, no other operations than
828 * adding/removing nodes to/from the scan list are allowed
    [all...]
drm_mm.c 781 * DOC: lru scan roster
791 * interfaces. First a scan operation needs to be initialized with
801 * in the scan mode no other operation is allowed.
804 * reported true) in the scan, and any overlapping nodes after color adjustment
808 * scan operation even begins this is linear in the number of objects. It
814 * @scan: scan state
815 * @mm: drm_mm to scan
827 * As long as the scan list is non-empty, no other operations than
828 * adding/removing nodes to/from the scan list are allowed
    [all...]
  /src/usr.bin/menuc/
Makefile 8 SRCS= main.c parse.y scan.l avl.c mdb.c util.c
Makefile 8 SRCS= main.c parse.y scan.l avl.c mdb.c util.c
  /src/sys/arch/evbarm/stand/board/
smdk2410_ram_init.S 52 #define BANKCON_VAL_DRAM(trcd,scan) \
53 (BANKCON_MT_DRAM | ((trcd)<<BANKCON_TRCD_SHIFT) | scan)
smdk2410_ram_init.S 52 #define BANKCON_VAL_DRAM(trcd,scan) \
53 (BANKCON_MT_DRAM | ((trcd)<<BANKCON_TRCD_SHIFT) | scan)
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem_evict.c 61 mark_free(struct drm_mm_scan *scan,
70 return drm_mm_scan_add_block(scan, &vma->node);
103 struct drm_mm_scan scan; local in function:i915_gem_evict_something
130 drm_mm_scan_init_with_range(&scan, &vm->mm,
144 * scan to the end. The assumption is that the working set
148 * Given that assumption, the MRU order of the scan list is
149 * fairly static, and keeping it in least-recently scan order
172 if (mark_free(&scan, vma, flags, &eviction_list))
178 ret = drm_mm_scan_remove_block(&scan, &vma->node);
224 if (drm_mm_scan_remove_block(&scan, &vma->node)
    [all...]
i915_gem_evict.c 61 mark_free(struct drm_mm_scan *scan,
70 return drm_mm_scan_add_block(scan, &vma->node);
103 struct drm_mm_scan scan; local in function:i915_gem_evict_something
130 drm_mm_scan_init_with_range(&scan, &vm->mm,
144 * scan to the end. The assumption is that the working set
148 * Given that assumption, the MRU order of the scan list is
149 * fairly static, and keeping it in least-recently scan order
172 if (mark_free(&scan, vma, flags, &eviction_list))
178 ret = drm_mm_scan_remove_block(&scan, &vma->node);
224 if (drm_mm_scan_remove_block(&scan, &vma->node)
    [all...]
  /src/usr.bin/config/
Makefile 9 mkmakefile.c mkswap.c pack.c scan.l sem.c util.c
20 COPTS.scan.c+= ${CC_WNO_STRINGOP_TRUNCATION}
Makefile 9 mkmakefile.c mkswap.c pack.c scan.l sem.c util.c
20 COPTS.scan.c+= ${CC_WNO_STRINGOP_TRUNCATION}
  /src/usr.bin/xlint/lint1/
Makefile 9 main1.c mem.c mem1.c oper.c scan.l tree.c tyname.c
22 LINTFLAGS.scan.c+= -X 107,126,330,331,332,333 # strict bool mode
23 LINTFLAGS.scan.c+= -X 192,214 # due to suppressed bool errors
24 LINTFLAGS.scan.c+= -X 307 # static variable unused
25 LINTFLAGS.scan.c+= -X 351 # 'extern' declaration in .c file

Completed in 77 milliseconds

1 2 3 4 5 6