Searched refs:end (Results 1 - 25 of 1294) sorted by relevance

1234567891011>>

/src/usr.bin/m4/lib/
H A Dohash_create_entry.c23 * key is stored at the end of the record.
26 ohash_create_entry(struct ohash_info *i, const char *start, const char **end) argument
30 if (!*end)
31 *end = start + strlen(start);
32 p = (i->alloc)(i->key_offset + (*end - start) + 1, i->data);
34 memcpy(p+i->key_offset, start, *end-start);
35 p[i->key_offset + (*end - start)] = '\0';
/src/sys/arch/mvme68k/stand/libbug/
H A Doutln.c13 mvmeprom_outln(char *start, char *end) argument
16 MVMEPROM_ARG2(end, start);
H A Doutstr.c13 mvmeprom_outstr(char *start, char *end) argument
16 MVMEPROM_ARG2(end, start);
/src/lib/libc/arch/hppa/sys/
H A Dsyscall.S39 .end
/src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/
H A Dinstrprof-basic.c13 int end(int i) { function in typeref:typename:int
22 end(1);
/src/sys/external/bsd/compiler_rt/dist/test/profile/
H A Dinstrprof-basic.c13 int end(int i) { function in typeref:typename:int
22 end(1);
/src/usr.bin/make/unit-tests/
H A Dvarname-makefile.exp1 : In the end, MAKEFILE is /dev/null.
H A Dsuff-lookup.exp6 Adding suffix ".dead-end"
8 inserting ".ccc" (3) at end of list
9 inserting ".cc" (2) at end of list
12 inserting ".c" (1) at end of list
13 inserting ".ccc" (3) at end of list
16 inserting ".short" (4) at end of list
17 inserting ".c" (1) at end of list
20 inserting ".sho" (5) at end of list
21 inserting ".c" (1) at end of list
23 defining transformation from `.dead-end' t
[all...]
H A Ddeptgt-end-fail.mk1 # $NetBSD: deptgt-end-fail.mk,v 1.7 2022/05/07 08:01:20 rillig Exp $
18 . for end in ok ERR
19 . for end-dep in ok ERR
20 . for target in ${all}-${all-dep}-${end}-${end-dep}
23 echo Test case all=${all} all-dep=${all-dep} end=${end} end-dep=${end-dep}.
26 end
[all...]
H A Dcmd-errors-jobs.mk9 && echo "end $$* with status $$?" \
10 || echo "end $$* with status $$?" \
21 ${RUN} end-direct
22 ${RUN} end-indirect
28 # expect: end undefined-direct with status 0
30 # expect: end undefined-indirect with status 0
55 # expect: end parse-error-direct with status 2
59 # expect: end parse-error-indirect with status 2
69 # expect: end begin-direct with status 1
82 # expect: end begi
[all...]
/src/sys/lib/libkern/
H A Dscanc.c40 const u_char *end = &cp[size]; local in function:scanc
42 while (cp < end && (table[*cp] & mask) == 0)
44 return (end - cp);
H A Dskpc.c40 u_char *end = &cp[size]; local in function:skpc
42 while (cp < end && *cp == (u_char) mask)
44 return (end - cp);
H A Ddkcksum.c57 const uint16_t *start, *end; local in function:dkcksum_sized
62 end = (const uint16_t *)&lp->d_partitions[npartitions];
63 while (start < end) {
/src/sys/uvm/
H A Duvm_coredump.c98 state.end = 0;
102 else if (!uvm_map_lookup_entry(map, state.end, &entry))
108 if (state.end > entry->start) {
109 state.start = state.end;
113 state.realend = entry->end;
114 state.end = entry->end;
135 KASSERT(state.end <= VM_MAXUSER_ADDRESS);
157 vaddr_t end; local in function:uvm_coredump_walkmap
160 for (end
[all...]
/src/tests/bin/sh/
H A Dt_here.sh177 atf_set "descr" "Tests for various end markers of here documents"
182 for end in EOF 1 \! '$$$' "string " a\\\ a\\\ \ '&' '' ' ' ' ' \
186 # check unquoted end markers
187 case "${end}" in
190 'x=$(cat << '"${end}${nl}text${nl}${end}${nl}"'); printf %s "$x"' 'text' 0
194 # and quoted end markers
196 'x=$(cat <<'"'${end}'${nl}text${nl}${end}${nl}"'); printf %s "$x"' 'text' 0
198 # and see what happens if we encounter "almost" an end marke
[all...]
/src/lib/libbluetooth/
H A Dsdp_data.c52 if (data->next + 1 > data->end)
70 if (p + 1 > data->end)
110 if (p + 1 > data->end)
120 if (p + 2 > data->end)
130 if (p + 4 > data->end)
140 if (p > data->end)
153 _sdp_data_valid(uint8_t *ptr, uint8_t *end) argument
157 while (ptr < end) {
158 if (ptr + 1 > end)
168 if (ptr + 1 > end)
373 _sdp_data_print(const uint8_t * next,const uint8_t * end,int indent) argument
[all...]
H A Dsdp_set.c50 if (p + 2 > data->end
63 if (p + 1 > data->end)
68 if (p + 1 > data->end
76 if (p + 2 > data->end
84 if (p + 4 > data->end
92 if (p + 8 > data->end
100 if (p + 16 > data->end)
119 if (p + 1 > data->end)
124 if (p + 1 > data->end
133 if (p + 2 > data->end
[all...]
H A Dsdp_get.c56 || p + l > data->end)
61 value->end = p + l;
87 if (p + 1 > data->end)
92 if (p + 2 > data->end)
101 if (p + 4 > data->end)
110 if (p + 16 > data->end)
131 if (p + 1 > data->end)
136 if (p + 1 > data->end)
158 if (p + 1 > data->end)
163 if (p + 1 > data->end)
[all...]
/src/sys/arch/evbppc/stand/wii/
H A Dcache.h40 uint32_t end = roundup((uint32_t)addr + size, CACHE_LINE_SIZE); local in function:cache_dcbf
43 while (start < end) {
54 uint32_t end = roundup((uint32_t)addr + size, CACHE_LINE_SIZE); local in function:cache_dcbi
57 while (start < end) {
68 uint32_t end = roundup((uint32_t)addr + size, CACHE_LINE_SIZE); local in function:cache_icbi
71 while (start < end) {
/src/sys/arch/atari/stand/ahdilabel/
H A Dcksum.c41 u_short *start, *end, sum = 0; local in function:dkcksum
44 end = (u_short *)&dl->d_partitions[dl->d_npartitions];
45 while (start < end)
/src/lib/libutil/
H A Ddisklabel_dkcksum.c49 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/usr.bin/mkcsmapper/
H A Dldef.h31 u_int32_t end; member in struct:__anonae1968d60108
/src/games/battlestar/
H A Dmisc.c47 const char *end = array + size; local in function:card
50 while (array < end)
/src/sys/external/bsd/drm2/include/linux/
H A Dioport.h47 bus_addr_t end; /* WARNING: Inclusive! */ member in struct:resource
55 { .start = (START), .end = (START) + ((SIZE) - 1) }
60 return resource->end - resource->start + 1;
68 return r1->start <= r2->start && r2->end <= r1->end;
/src/sbin/disklabel/
H A Ddkcksum.c63 const uint16_t *start, *end; local in function:dkcksum_sized
68 end = (const uint16_t *)&lp->d_partitions[npartitions];
69 while (start < end) {

Completed in 21 milliseconds

1234567891011>>