Searched refs:start (Results 51 - 75 of 2022) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/byacc/test/
H A Dempty.y10 start: ; label
H A Derr_syntax13.y7 %start text
H A Derr_syntax9.y6 %start text
/freebsd-11-stable/contrib/groff/src/include/
H A Dindex.h38 int start; member in struct:tag
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dverify.h34 svn_revnum_t start,
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dbidi_table.h10 uint32_t start; member in struct:range_entry
H A Dbidi.c46 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
48 return ea->start - eb->start;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp37 SegmentIter SegPos = Segments.find(RegPos->start);
40 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
43 SegPos.advanceTo(RegPos->start);
50 SegPos.insert(RegEnd->start, RegEnd->end, &VirtReg);
52 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
64 SegmentIter SegPos = Segments.find(RegPos->start);
73 RegPos = Range.advanceTo(RegPos, SegPos.start());
77 SegPos.advanceTo(RegPos->start);
88 OS << " [" << SI.start() << ' ' << SI.stop() << "):"
133 // In most cases, the union will start befor
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_globals_win.cpp27 __asan_global *start = &__asan_globals_start + 1; local
29 uptr bytediff = (uptr)end - (uptr)start;
37 // We know end >= start because the linker sorts the portion after the dollar
39 uptr n = end - start;
40 hook(start, n);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dverify.h35 svn_revnum_t start,
/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_speed.c70 double start, end, seconds; local
94 start = get_ticks ();
100 seconds = end - start;
108 start = get_ticks ();
112 seconds = end - start;
117 start = get_ticks ();
121 seconds = end - start;
126 start = get_ticks ();
130 seconds = end - start;
135 start
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcomment.exp1 comment testing start
/freebsd-11-stable/contrib/binutils/ld/emulparams/
H A Darcelf.sh12 ENTRY=start
H A Dmipsidt.sh7 ENTRY=start
H A Dmipsidtl.sh7 ENTRY=start
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf3 # The start and end of the IP lease block
5 start 192.168.42.20 #default: 192.168.0.20
/freebsd-11-stable/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_random.c42 char *start, *end; local
66 start = _passwdqc_wordset_4k[i];
67 end = memchr(start, '\0', 6);
68 if (!end) end = start + 6;
69 if (length + (end - start) >= sizeof(output) - 1) {
73 memcpy(&output[length], start, end - start);
74 length += end - start;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyClassDefinitionDumper.h34 void start(const PDBSymbolTypeUDT &Class);
35 void start(const ClassLayout &Class);
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dexp.c18 char *start, *end; local
29 start = ms_time_new();
38 ms_time_get(start);
42 md = ms_time_diff(start, end);
44 ms_time_get(start);
51 d = ms_time_diff(start, end) /* *50/33 */ ;
/freebsd-11-stable/contrib/bmake/
H A Dstr.c144 char inquote, *start, *t; local
170 for (p = str, start = t = *buffer;; ++p) {
183 if (start == NULL && p[1] == inquote) {
185 start = t;
188 start = t + 1;
195 if (!start)
196 start = t;
205 if (!start)
213 if (!start)
222 argv[argc++] = start;
[all...]
/freebsd-11-stable/usr.bin/bluetooth/rfcomm_sppd/
H A Drfcomm_sdp.c45 static int rfcomm_proto_list_parse (uint8_t const *start, uint8_t const *end,
177 rfcomm_proto_list_parse(uint8_t const *start, uint8_t const *end, argument
182 while (start < end) {
198 if (end - start < 1)
201 SDP_GET8(type, start);
204 SDP_GET8(len, start);
208 SDP_GET16(len, start);
212 SDP_GET32(len, start);
221 if (end - start < 3)
225 SDP_GET8(type, start); le
[all...]
/freebsd-11-stable/contrib/ntp/libjsmn/
H A Djsmn.c15 tok->start = tok->end = -1;
27 int start, int end) {
29 token->start = start;
40 int start; local
42 start = parser->pos;
55 parser->pos = start;
61 parser->pos = start;
72 parser->pos = start;
75 jsmn_fill_token(token, JSMN_PRIMITIVE, start, parse
26 jsmn_fill_token(jsmntok_t *token, jsmntype_t type, int start, int end) argument
90 int start = parser->pos; local
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Dradeon_mem.c44 static struct mem_block *split_block(struct mem_block *p, int start, int size, argument
47 /* Maybe cut off the start of an existing block */
48 if (start > p->start) {
53 newblock->start = start;
54 newblock->size = p->size - (start - p->start);
70 newblock->start = start
93 int start = (p->start + mask) & ~mask; local
101 find_block(struct mem_block *heap, int start) argument
138 init_heap(struct mem_block **heap, int start, int size) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_mem.c43 static struct mem_block *split_block(struct mem_block *p, int start, int size, argument
46 /* Maybe cut off the start of an existing block */
47 if (start > p->start) {
52 newblock->start = start;
53 newblock->size = p->size - (start - p->start);
69 newblock->start = start
92 int start = (p->start + mask) & ~mask; local
100 find_block(struct mem_block *heap, int start) argument
137 init_heap(struct mem_block **heap, int start, int size) argument
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Dmptable_pci.c77 mptable_is_isa_range(rman_res_t start, rman_res_t end) argument
82 if ((start & 0xfc00) != (end & 0xfc00))
84 start &= ~0xfc00;
86 return (start >= 0x100 && end <= 0x3ff);
90 mptable_is_vga_range(rman_res_t start, rman_res_t end) argument
94 if ((start & 0xfc00) != (end & 0xfc00))
96 start &= ~0xfc00;
98 return (pci_is_vga_ioport_range(start, end));
103 rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
109 return (pci_domain_alloc_bus(0, child, rid, start, en
102 mptable_hostb_alloc_resource(device_t dev, device_t child, int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) argument
143 mptable_hostb_adjust_resource(device_t dev, device_t child, int type, struct resource *r, rman_res_t start, rman_res_t end) argument
[all...]

Completed in 159 milliseconds

1234567891011>>