HomeSort by: relevance | last modified time | path
    Searched defs:end (Results 1 - 25 of 1659) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/lib/libkern/
scanc.c 40 const u_char *end = &cp[size]; local in function:scanc
42 while (cp < end && (table[*cp] & mask) == 0)
44 return (end - cp);
skpc.c 40 u_char *end = &cp[size]; local in function:skpc
42 while (cp < end && *cp == (u_char) mask)
44 return (end - cp);
scanc.c 40 const u_char *end = &cp[size]; local in function:scanc
42 while (cp < end && (table[*cp] & mask) == 0)
44 return (end - cp);
skpc.c 40 u_char *end = &cp[size]; local in function:skpc
42 while (cp < end && *cp == (u_char) mask)
44 return (end - cp);
scanc.c 40 const u_char *end = &cp[size]; local in function:scanc
42 while (cp < end && (table[*cp] & mask) == 0)
44 return (end - cp);
skpc.c 40 u_char *end = &cp[size]; local in function:skpc
42 while (cp < end && *cp == (u_char) mask)
44 return (end - cp);
  /src/lib/libutil/
disklabel_dkcksum.c 49 uint16_t *start, *end; local in function:disklabel_dkcksum
54 end = (uint16_t *)(void *)&lp->d_partitions[lp->d_npartitions];
55 while (start < end)
disklabel_dkcksum.c 49 uint16_t *start, *end; local in function:disklabel_dkcksum
54 end = (uint16_t *)(void *)&lp->d_partitions[lp->d_npartitions];
55 while (start < end)
disklabel_dkcksum.c 49 uint16_t *start, *end; local in function:disklabel_dkcksum
54 end = (uint16_t *)(void *)&lp->d_partitions[lp->d_npartitions];
55 while (start < end)
  /src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
  /src/sys/external/bsd/compiler_rt/dist/test/profile/
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
instrprof-basic.c 13 int end(int i) { function in typeref:typename:int
22 end(1);
  /src/sys/external/isc/libsodium/dist/builds/msvc/build/
buildbase.bat 60 GOTO end
64 GOTO end
69 :end label
buildbase.bat 60 GOTO end
64 GOTO end
69 :end label
buildbase.bat 60 GOTO end
64 GOTO end
69 :end label
  /src/usr.bin/make/unit-tests/
deptgt-end.mk 1 # $NetBSD: deptgt-end.mk,v 1.6 2020/10/23 19:28:17 rillig Exp $
3 # Tests for the special target .END in dependency declarations,
16 .END:
21 # The .END node can define dependencies, just like a regular target.
22 .END: end-action
23 end-action: .NOTMAIN
36 # The deferred commands are run in the order '.END .BEGIN all'.
38 # '.BEGIN all .END', but it is implemented correctly.
41 # the deferred commands are appended to the commands of the .END node
    [all...]
varmod-mtime.mk 95 end:= ${%s:L:gmtime} macro
96 .if ${not_found_mtime} > ${end}
deptgt-end.mk 1 # $NetBSD: deptgt-end.mk,v 1.6 2020/10/23 19:28:17 rillig Exp $
3 # Tests for the special target .END in dependency declarations,
16 .END:
21 # The .END node can define dependencies, just like a regular target.
22 .END: end-action
23 end-action: .NOTMAIN
36 # The deferred commands are run in the order '.END .BEGIN all'.
38 # '.BEGIN all .END', but it is implemented correctly.
41 # the deferred commands are appended to the commands of the .END node
    [all...]
varmod-mtime.mk 95 end:= ${%s:L:gmtime} macro
96 .if ${not_found_mtime} > ${end}
deptgt-end.mk 1 # $NetBSD: deptgt-end.mk,v 1.6 2020/10/23 19:28:17 rillig Exp $
3 # Tests for the special target .END in dependency declarations,
16 .END:
21 # The .END node can define dependencies, just like a regular target.
22 .END: end-action
23 end-action: .NOTMAIN
36 # The deferred commands are run in the order '.END .BEGIN all'.
38 # '.BEGIN all .END', but it is implemented correctly.
41 # the deferred commands are appended to the commands of the .END node
    [all...]
varmod-mtime.mk 95 end:= ${%s:L:gmtime} macro
96 .if ${not_found_mtime} > ${end}
  /src/bin/sh/
arith_token.c 77 char *end; local in function:arith_token
89 a_t_val.val = strtoimax(buf, &end, 0);
90 if (is_in_name(*end)) {
91 token = *end;
92 while (is_in_name(*++end))
96 "%.*s", token, (int)(end - buf), buf);
98 arith_buf = end;

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>