Searched refs:current (Results 1 - 25 of 384) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/llvm/lib/Support/
H A DMemoryObject.cpp19 uint64_t current = address; local
22 if (current + size > limit)
25 while (current - address < size) {
26 if (readByte(current, &buf[(current - address)]))
29 current++;
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dsigaction.c56 sigset_t current = sigsetmask(0); local
59 *omask = current;
62 current |= *mask;
64 current &= ~*mask;
66 current = *mask;
68 sigsetmask(current);
/freebsd-10-stable/sys/dev/isci/scil/
H A Dsci_base_iterator.c138 if (iterator->current != NULL)
140 current_object = sci_abstract_list_get_object(iterator->current);
159 iterator->current = sci_abstract_list_get_front(iterator->list);
175 if (iterator->current != NULL)
177 iterator->current = sci_abstract_list_get_next(iterator->current);
H A Dsci_base_iterator.h107 SCI_ABSTRACT_ELEMENT_T * current; member in struct:SCI_BASE_ITERATOR
/freebsd-10-stable/tools/tools/mid/
H A Dmid-build26 current () function
29 find current/freebsd-* current/cvs-* -type f |
30 mid-master-index 1 mid-index $dbout/mid-current
35 echo "usage mid-build {current|all}"
42 current) current;;
/freebsd-10-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dslc.c53 slctab[i].current.flag = SLC_NOSUPPORT;
54 slctab[i].current.val = 0;
/freebsd-10-stable/contrib/diff/src/
H A Dio.c74 file_block_read (struct file_data *current, size_t size)
76 if (size && ! current->eof)
78 size_t s = block_read (current->desc,
79 FILE_BUFFER (current) + current->buffered, size);
81 pfatal_with_name (current->name);
82 current->buffered += s;
83 current->eof = s < size;
95 /* Get ready to read the current file.
100 sip (struct file_data *current, boo
72 file_block_read(struct file_data *current, size_t size) argument
97 sip(struct file_data *current, bool skip_test) argument
148 slurp(struct file_data *current) argument
217 find_and_hash_each_line(struct file_data *current) argument
519 prepare_text(struct file_data *current) argument
[all...]
/freebsd-10-stable/contrib/telnet/telnetd/
H A Dslc.c57 * Write out the current special characters to the client.
72 add_slc((unsigned char)i, slctab[i].current.flag,
73 slctab[i].current.val);
89 slctab[i].current.val = slctab[i].defset.val;
90 if (slctab[i].current.val == (cc_t)(_POSIX_VDISABLE))
91 slctab[i].current.flag = SLC_NOSUPPORT;
93 slctab[i].current.flag = slctab[i].defset.flag;
118 slctab[i].current.flag = SLC_NOSUPPORT;
119 slctab[i].current.val = 0;
250 mylevel = slctab[func].current
[all...]
/freebsd-10-stable/contrib/ntp/lib/isc/unix/
H A Difiter_sysctl.c54 isc_interface_t current; /* Current interface data. */ member in struct:isc_interfaceiter
145 * Get information about the current interface to iter->current.
171 memset(&iter->current, 0, sizeof(iter->current));
173 iter->current.ifindex = sdl->sdl_index;
175 if (namelen > sizeof(iter->current.name) - 1)
176 namelen = sizeof(iter->current.name) - 1;
178 memset(iter->current.name, 0, sizeof(iter->current
[all...]
H A Difiter_getifaddrs.c43 struct ifaddrs *pos; /*%< Ptr to current ifaddr */
44 isc_interface_t current; /*%< Current interface data. */ member in struct:isc_interfaceiter
133 * Get information about the current interface to iter->current.
188 memset(&iter->current, 0, sizeof(iter->current));
191 if (namelen > sizeof(iter->current.name) - 1)
192 namelen = sizeof(iter->current.name) - 1;
194 memset(iter->current.name, 0, sizeof(iter->current
[all...]
H A Difiter_ioctl.c85 isc_interface_t current; /* Current interface data. */ member in struct:isc_interfaceiter
430 memset(&iter->current, 0, sizeof(iter->current));
431 iter->current.af = iter->clua_sa.sa_family;
432 memset(iter->current.name, 0, sizeof(iter->current.name));
433 sprintf(iter->current.name, "clua%d", ci.aliasid);
434 iter->current.flags = INTERFACE_F_UP;
435 get_inaddr(&iter->current.address, &ci.addr);
436 get_inaddr(&iter->current
[all...]
/freebsd-10-stable/crypto/openssh/openbsd-compat/
H A Dsigact.c69 sigset_t current = sigsetmask(0); local
77 *omask = current;
80 current |= *mask;
82 current &= ~*mask;
84 current = *mask;
86 sigsetmask(current);
/freebsd-10-stable/tools/tools/mctest/
H A Dmctest_run.sh61 current=0
66 $remote $host $command -r -M $# -b $base -g $group -m $current -n $number -s $size -i $foreign_interface > $output &
68 current=`expr $current + 1 `;
/freebsd-10-stable/contrib/dialog/
H A Dcalendar.c142 days_in_month(struct tm *current, int offset /* -1, 0, 1 */ ) argument
149 int year = current->tm_year;
150 int month = current->tm_mon + offset;
168 days_in_year(struct tm *current, int offset /* -1, 0, 1 */ ) argument
170 int year = current->tm_year + 1900 + offset;
176 day_cell_number(struct tm *current) argument
179 cell = current->tm_mday - ((6 + current->tm_mday - current->tm_wday) % 7);
180 if ((current
216 draw_day(BOX * data, struct tm *current) argument
293 draw_month(BOX * data, struct tm *current) argument
317 draw_year(BOX * data, struct tm *current) argument
438 struct tm current; local
[all...]
/freebsd-10-stable/sys/ofed/include/linux/
H A Dsched.h65 #define current ((struct task_struct *)curthread->td_retval[1]) macro
70 atomic_store_rel_int((volatile int *)&current->state, (x))
71 #define __set_current_state(x) current->state = (x)
82 if (current->state == TASK_INTERRUPTIBLE || \
83 current->state == TASK_UNINTERRUPTIBLE) { \
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dconfig.c41 char **current; local
64 for (current = environ; *current != NULL; current++)
68 if (strncmp(str, *current, matchlen) == 0)
71 *current = (char *) str;
136 ** deleted from the current environment.
142 ** environ -- a pointer to the current environment.
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dinterfaceiter.c49 isc_interface_t current; /* Current interface data. */ member in struct:isc_interfaceiter
417 iter->current.netmask.family = af;
436 octets = sizeof(iter->current.netmask.type.in6);
438 octets = sizeof(iter->current.netmask.type.in);
439 memset(&iter->current.netmask.type, 0xFF, octets);
444 memset(&iter->current.netmask.type.in6, 0xFF, nbytes);
445 pbits = (void *)&iter->current.netmask.type.in6;
463 memset(&iter->current, 0, sizeof(iter->current));
464 iter->current
[all...]
/freebsd-10-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_format_zip_large.c56 struct fileblock *current; member in struct:fileblocks
125 while (private->current != NULL && private->buff == NULL && private->gap_remaining == 0) {
126 private->current = private->current->next;
127 if (private->current != NULL) {
128 private->buff = private->current->buff;
129 private->gap_remaining = private->current->gap_size;
133 if (private->current == NULL)
139 size = ((char *)private->current->buff + private->current
[all...]
/freebsd-10-stable/contrib/serf/buckets/
H A Dsimple_buckets.c24 const char *current; member in struct:__anon4434
48 ctx->original = ctx->current = data;
64 ctx->original = ctx->current = serf_bucket_mem_alloc(allocator, len);
82 ctx->original = ctx->current = data;
100 *data = ctx->current;
103 ctx->current += requested;
115 /* Returned data will be from current position. */
116 *data = ctx->current;
117 serf_util_readline(&ctx->current, &ctx->remaining, acceptable, found);
119 /* See how much ctx->current move
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DSTLExtras.h77 RootIt current; member in class:llvm::mapped_iterator
93 inline const RootIt &getCurrent() const { return current; }
97 : current(I), Fn(F) {}
99 : current(It.current), Fn(It.Fn) {}
102 return Fn(*current); // little change
105 _Self& operator++() { ++current; return *this; }
106 _Self& operator--() { --current; return *this; }
107 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
108 _Self operator--(int) { _Self __tmp = *this; --current; retur
[all...]
/freebsd-10-stable/lib/libc/xdr/
H A Dxdr_rec.c286 int current; local
289 current = (int)rstrm->fbtbc;
290 if (current == 0) {
297 current = (len < current) ? len : current;
298 if (! get_input_bytes(rstrm, addr, current))
300 addr += current;
301 rstrm->fbtbc -= current;
302 len -= current;
314 size_t current; local
686 size_t current; local
744 u_int32_t current; local
[all...]
/freebsd-10-stable/contrib/openpam/lib/libpam/
H A Dopenpam_get_option.c65 if (pamh == NULL || pamh->current == NULL || option == NULL)
67 cur = pamh->current;
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
H A Dbuffer.h42 * of the used region to the byte before the 'current' offset (if any). The
43 * 'remaining' region the current pointer to the end of the used
48 * It extends from the current offset to an offset in the remaining region
50 * is empty. If the current offset advances beyond the chosen offset, the
62 * b == current pointer. Can be anywhere between a and d.
83 * 0 <= current <= used
86 * (although active < current implies empty active region)
143 ((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
156 #define isc_buffer_consumedlength(b) ((b)->current) /* b-a */
157 #define isc_buffer_remaininglength(b) ((b)->used - (b)->current) /*
175 unsigned int current; member in struct:isc_buffer
[all...]
/freebsd-10-stable/contrib/ncurses/form/
H A Dfld_current.c41 | Description : Set the current field of the form to the specified one.
47 | E_INVALID_FIELD - current field can't be left
66 form->current = field;
77 if (form->current != field)
109 | Description : Return the current field.
111 | Return Values : Pointer to the current field.
117 returnField(Normalize_Form(form)->current);
H A Dfrm_def.c55 (FIELD *)0, /* current */
82 FIELD *current, *newhead;
92 newhead = current = head;
93 while ((current->frow < newfield->frow) ||
94 ((current->frow == newfield->frow) &&
95 (current->fcol < newfield->fcol)))
97 current = current->snext;
98 if (current == head)
104 /* we leave the loop with current pointin
81 FIELD *current, *newhead; local
[all...]

Completed in 242 milliseconds

1234567891011>>