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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_procmaps_linux.cc 36 if (data_.current >= last) return false;
38 (char *)internal_memchr(data_.current, '\n', last - data_.current);
42 segment->start = ParseHex(&data_.current);
43 CHECK_EQ(*data_.current++, '-');
44 segment->end = ParseHex(&data_.current);
45 CHECK_EQ(*data_.current++, ' ');
46 CHECK(IsOneOf(*data_.current, '-', 'r'));
48 if (*data_.current++ == 'r') segment->protection |= kProtectionRead;
49 CHECK(IsOneOf(*data_.current, '-', 'w'))
    [all...]
sanitizer_procmaps_solaris.cc 35 if (data_.current >= last) return false;
37 prxmap_t *xmapentry = (prxmap_t*)data_.current;
57 data_.current += sizeof(prxmap_t);
sanitizer_procmaps_bsd.cc 104 if (data_.current >= last)
107 (const struct kinfo_vmentry *)data_.current;
130 data_.current += VmEntry->kve_structsize;
132 data_.current += sizeof(*VmEntry);
sanitizer_quarantine.h 257 QuarantineBatch *current = list_.front(); local in function:__sanitizer::QuarantineCache::MergeBatches
258 while (current && current->next) {
259 if (current->can_merge(current->next)) {
260 QuarantineBatch *extracted = current->next;
261 // Move all the chunks into the current batch.
262 current->merge(extracted);
266 list_.extract(current, extracted);
271 current = current->next
    [all...]
  /src/games/boggle/mkdict/
mkdict.c 67 int current, len, prev, qcount; local in function:main
71 current = 1;
75 fgets(buf[current], MAXWORDLEN + 1, stdin) != NULL; ++nwords) {
76 if ((p = strchr(buf[current], '\n')) == NULL) {
77 fprintf(stderr, "word too long: %s\n", buf[current]);
85 for (p = buf[current]; *p != '\n'; p++) {
106 p = buf[current];
112 common = p - buf[current] - 1;
115 current = !current;
    [all...]
  /src/libexec/telnetd/
slc.c 59 * Write out the current special characters to the client.
74 add_slc((unsigned char)i, slctab[i].current.flag,
75 slctab[i].current.val);
91 slctab[i].current.val = slctab[i].defset.val;
92 if (slctab[i].current.val == (cc_t)(_POSIX_VDISABLE))
93 slctab[i].current.flag = SLC_NOSUPPORT;
95 slctab[i].current.flag = slctab[i].defset.flag;
120 slctab[i].current.flag = SLC_NOSUPPORT;
121 slctab[i].current.val = 0;
254 mylevel = slctab[func].current.flag & SLC_LEVELBITS
    [all...]
  /src/etc/rc.d/
bootconf.sh 21 if [ ! -e /etc/etc.current ]; then
28 default=current
30 if [ "$default" = "current" ]; then
31 def=$(ls -ld /etc/etc.current 2>&1)
39 current|default|\*)
72 current|default)
75 rm -f /etc/etc.current
76 ln -s etc.$conf /etc/etc.current
  /src/usr.sbin/mopd/common/
nma.c 197 struct commDev *current; local in function:nmaGetShort
199 current = nmaCommDev;
201 while (current->sname != NULL) {
202 if (current->val == devno)
204 current++;
207 return(current->sname);
213 struct commDev *current; local in function:nmaGetDevice
215 current = nmaCommDev;
217 while (current->name != NULL) {
218 if (current->val == devno
    [all...]
  /src/sbin/newbtconf/
newbtconf.sh 18 if [ -d /etc/etc.network ] || [ -e /etc/etc.current ] ; then
25 ln -s $dir etc.current
30 ln -s etc.current/$i .
38 if [ ! -d /etc/etc.current ] ; then
54 xetc.current/*) :;;
56 echo "$i: does not symlink to etc.current, skipping"
64 ( cd etc.current && pax -rw -pe $i /etc )
68 rm etc.current
82 orig=etc.current
83 echo "Using current config as base for $newname
    [all...]
  /src/lib/libc/time/
tzcode2netbsd 30 echo you can find the current version in the Makefile
32 echo current version and apply patches.
  /src/usr.bin/tftp/
tftpsubs.c 42 server. Written originally with multiple buffers in mind, but current
74 static int current; /* index of buffer in use */ variable in typeref:typename:int
101 current = 0;
107 /* Have emptied current buffer by sending to net and getting ack.
119 bfs[current].counter = BF_FREE; /* free old one */
120 current = !current; /* "incr" current */
122 b = &bfs[current]; /* look at new buffer */
187 bfs[current].counter = ct; /* set size of data to write *
    [all...]
  /src/lib/libc/rpc/
xdr_rec.c 136 uint32_t *frag_header; /* beginning of current fragment */
297 u_int current; local in function:xdrrec_getbytes
300 current = (u_int)rstrm->fbtbc;
301 if (current == 0) {
308 current = (len < current) ? len : current;
309 if (! get_input_bytes(rstrm, addr, current))
311 addr += current;
312 rstrm->fbtbc -= current;
322 size_t current; local in function:xdrrec_putbytes
672 u_int current; local in function:get_input_bytes
730 uint32_t current; local in function:skip_input_bytes
    [all...]
  /src/sys/sys/
gcq.h 256 _gcq_next(struct gcq *current, struct gcq_head *head, struct gcq *start)
260 q = current->q_next;
263 if (current != start)
264 GCQ_ASSERT(gcq_onlist(current));
269 _gcq_prev(struct gcq *current, struct gcq_head *head, struct gcq *start)
273 q = current->q_prev;
276 if (current != start)
277 GCQ_ASSERT(gcq_onlist(current));
291 #define _GCQ_NP(var, current, head, start, np, fn) \
292 (np(current, head, start) != (start) ?
    [all...]
  /src/lib/libc/arch/mips/sys/
sbrk.S 61 PTR_ADDU a0, a0, t1 # compute current break
66 PTR_S a0, 0(t0) # save current val of curbrk from above
  /src/lib/libcurses/
getch.c 215 static key_entry_t *add_new_key(keymap_t *current, char ch, int key_type,
217 static void delete_key_sequence(keymap_t *current, int key_type);
218 static void do_keyok(keymap_t *current, int key_type, bool set, bool flag,
252 * Add a new key entry to the keymap pointed to by current. Entry
259 add_new_key(keymap_t *current, char chr, int key_type, int symbol)
267 if (current->mapping[(unsigned char)chr] < 0) {
268 if (current->mapping[(unsigned char)chr] == MAPPING_UNUSED) {
270 current->mapping[(unsigned char)chr] =
271 current->count; /* map new entry */
272 ki = current->count
376 keymap_t *current; local in function:add_key_sequence
539 keymap_t *current = _cursesi_screen->base_keymap; local in function:inkey
    [all...]
  /src/sys/fs/udf/
udf_osta.c 54 /* Use UDFCompressed to store current byte being read. */
335 unicode_t current; local in function:UDFTransName
339 current = udfName[Index];
341 if (IsIllegal(current) || !UnicodeIsPrint(current)) {
346 current = ILLEGAL_CHAR_MARK;
357 if (current == PERIOD && (udfLen - Index -1) <= EXT_SIZE) {
370 else if (current != PERIOD && current != SPACE) {
376 newName[newIndex++] = current;
    [all...]
  /src/lib/libc/gen/
getusershell.c 334 char *current; /* current first/next match */ member in struct:nis_state
347 if (state->current) {
348 free(state->current);
349 state->current = NULL;
373 if (state->current)
374 free(state->current);
375 state->current = NULL;
421 if (_nis_state.current) { /* already searching */
423 _nis_state.current, _nis_state.currentlen
    [all...]
  /src/lib/libc/arch/vax/gen/
__setjmp14.S 51 subl2 $12,%sp # space for current struct sigstack
52 pushl %sp # get current values
69 movpsl (%r2) # save current psl
  /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/
vchiq_util.c 84 flush_signals(current);
111 flush_signals(current);
132 flush_signals(current);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
at91-natte.dtsi 71 ti,charge-current = <2000>;
87 ti,charge-current = <2000>;
103 ti,charge-current = <2000>;
119 ti,charge-current = <2000>;
135 ti,charge-current = <2000>;
151 ti,charge-current = <2000>;
167 ti,charge-current = <2000>;
183 ti,charge-current = <2000>;
  /src/usr.bin/rpcgen/
rpc_tblout.c 94 int current; local in function:write_table
115 current = atoi(proc->proc_num);
116 if (current != expected++) {
126 expected = current + 1;
  /src/usr.sbin/makefs/cd9660/
iso9660_rrip.c 376 struct ISO_SUSP_ATTRIBUTES *current = NULL; local in function:cd9660_rrip_initialize_node
392 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
394 cd9660node_rrip_px(current, parent->node);
395 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
401 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
403 cd9660node_rrip_px(current, grandparent->node);
404 TAILQ_INSERT_TAIL(&node->head, current, rr_ll);
408 current = cd9660node_susp_create_node(SUSP_TYPE_RRIP,
410 cd9660_rrip_PL(current,node);
411 TAILQ_INSERT_TAIL(&node->head, current, rr_ll)
495 struct ISO_SUSP_ATTRIBUTES* current; local in function:cd9660_createSL
    [all...]
  /src/usr.bin/make/unit-tests/
jobs-error-indirect.mk 3 # Ensure that in jobs mode, when a command fails, the current directory is
  /src/sys/arch/sparc64/sparc64/
lock_stubs.s 59 LDPTR [%o1 + %lo(CURLWP)], %o1 ! current thread
77 LDPTR [%o1 + %lo(CURLWP)], %o1 ! current thread
  /src/sys/fs/cd9660/
cd9660_vnops.c 74 struct dirent current; member in struct:isoreaddir
334 cl = idp->current.d_namlen;
335 cname = idp->current.d_name;
369 idp->current.d_reclen = _DIRENT_SIZE(&idp->current);
372 memcpy(&idp->assocent, &idp->current, idp->current.d_reclen);
375 memcpy(&idp->saveent, &idp->current, idp->current.d_reclen);
423 idp->saveent.d_type = idp->assocent.d_type = idp->current.d_type
    [all...]

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>