Searched refs:cur (Results 1 - 25 of 685) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Dchunk-print-before-all.py25 cur = [] variable
28 if len(cur) != 0:
29 print_chunk(cur);
30 cur = [] variable
31 cur.append("; " + line)
33 print_chunk(cur);
34 cur = [] variable
35 cur.append(line)
38 cur.append(line)
41 print("writing crashinfo.txt (" + str(len(cur))
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/config/gcn/
H A Ddoacross.h44 unsigned long cur)
53 cur = addr[i];
55 while (cur <= expected);
43 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/config/nvptx/
H A Ddoacross.h48 unsigned long cur)
55 cur = addr[i];
57 while (cur <= expected);
47 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc/dist/libgomp/config/nvptx/
H A Ddoacross.h48 unsigned long cur)
55 cur = addr[i];
57 while (cur <= expected);
47 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc/dist/libgomp/config/gcn/
H A Ddoacross.h44 unsigned long cur)
53 cur = addr[i];
55 while (cur <= expected);
43 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/lib/libform/
H A Dtype_numeric.c105 int cur; local
118 cur = 0;
121 while ((buf[cur] != '\0')
122 && ((buf[cur] == ' ') || (buf[cur] == '\t')))
123 cur++;
126 if (buf[cur] == '\0')
132 if ((buf[cur] == '-') || (buf[cur] == '+'))
133 cur
[all...]
H A Dtype_integer.c104 int cur; local
117 cur = 0;
120 while ((buf[cur] != '\0')
121 && ((buf[cur] == ' ') || (buf[cur] == '\t')))
122 cur++;
125 if (buf[cur] == '\0')
129 if ((buf[cur] == '-') || (buf[cur] == '+'))
130 cur
[all...]
/netbsd-current/external/public-domain/xz/dist/src/liblzma/lz/
H A Dlz_encoder_hash.h42 const uint32_t hash_value = *(const uint16_t *)(cur)
46 = (uint32_t)(cur[0]) | ((uint32_t)(cur[1]) << 8)
50 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
53 = (temp ^ ((uint32_t)(cur[2]) << 8)) & mf->hash_mask
56 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
59 = (temp ^ ((uint32_t)(cur[2]) << 8)) & HASH_3_MASK; \
60 const uint32_t hash_value = (temp ^ ((uint32_t)(cur[
[all...]
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dmbuiter.h109 struct mbchar cur; /* the current character: member in struct:mbuiter_multi
110 const char *cur.ptr pointer to current character
112 size_t cur.bytes number of bytes of current character
113 bool cur.wc_valid true if wc is a valid wide character
114 wchar_t cur.wc if wc_valid: the current character
126 if (is_basic (*iter->cur.ptr))
131 iter->cur.bytes = 1;
132 iter->cur.wc = *iter->cur.ptr;
133 iter->cur
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dmbuiter.h109 struct mbchar cur; /* the current character: member in struct:mbuiter_multi
110 const char *cur.ptr pointer to current character
112 size_t cur.bytes number of bytes of current character
113 bool cur.wc_valid true if wc is a valid wide character
114 wchar_t cur.wc if wc_valid: the current character
126 if (is_basic (*iter->cur.ptr))
131 iter->cur.bytes = 1;
132 iter->cur.wc = *iter->cur.ptr;
133 iter->cur
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dmbuiter.h109 struct mbchar cur; /* the current character: member in struct:mbuiter_multi
110 const char *cur.ptr pointer to current character
112 size_t cur.bytes number of bytes of current character
113 bool cur.wc_valid true if wc is a valid wide character
114 wchar_t cur.wc if wc_valid: the current character
126 if (is_basic (*iter->cur.ptr))
131 iter->cur.bytes = 1;
132 iter->cur.wc = *iter->cur.ptr;
133 iter->cur
[all...]
/netbsd-current/external/bsd/tmux/dist/compat/
H A Dmemmem.c41 const char *cur, *last; local
60 for (cur = cl; cur <= last; cur++)
61 if (cur[0] == cs[0] && memcmp(cur, cs, s_len) == 0)
62 return (void *)cur;
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_set_option.c67 pam_chain_t *cur; local
75 cur = pamh->current;
79 for (i = 0; i < cur->optc; ++i) {
80 if (strncmp(cur->optv[i], option, len) == 0 &&
81 (cur->optv[i][len] == '\0' || cur->optv[i][len] == '='))
86 if (i == cur->optc)
88 for (free(cur->optv[i]); i < cur->optc; ++i)
89 cur
[all...]
H A Dopenpam_get_option.c63 pam_chain_t *cur; local
70 cur = pamh->current;
72 for (i = 0; i < cur->optc; ++i) {
73 if (strncmp(cur->optv[i], option, len) == 0) {
74 if (cur->optv[i][len] == '\0')
75 RETURNS(&cur->optv[i][len]);
76 else if (cur->optv[i][len] == '=')
77 RETURNS(&cur->optv[i][len + 1]);
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DHeapMap.cc124 HeapObj *cur = chain[ichain]; local
126 while (cur != NULL)
128 if (cur->addr == addr)
131 long val = cur->val;
135 chain[ichain] = cur->next;
137 prev->next = cur->next;
138 releaseHeapObj (cur);
141 prev = cur;
142 cur = cur
227 HeapObj *cur = prev->next; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/config/linux/
H A Ddoacross.h40 unsigned long cur)
42 /* FIXME: back off depending on how large expected - cur is. */
46 cur = __atomic_load_n (addr, MEMMODEL_RELAXED);
47 if (expected < cur)
39 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/config/posix/
H A Ddoacross.h45 unsigned long cur)
47 /* FIXME: back off depending on how large expected - cur is. */
51 cur = __atomic_load_n (addr, MEMMODEL_RELAXED);
52 if (expected < cur)
44 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc/dist/libgomp/config/linux/
H A Ddoacross.h40 unsigned long cur)
42 /* FIXME: back off depending on how large expected - cur is. */
46 cur = __atomic_load_n (addr, MEMMODEL_RELAXED);
47 if (expected < cur)
39 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/external/gpl3/gcc/dist/libgomp/config/posix/
H A Ddoacross.h45 unsigned long cur)
47 /* FIXME: back off depending on how large expected - cur is. */
51 cur = __atomic_load_n (addr, MEMMODEL_RELAXED);
52 if (expected < cur)
44 doacross_spin(unsigned long *addr, unsigned long expected, unsigned long cur) argument
/netbsd-current/sys/arch/ews4800mips/stand/common/
H A Dprompt.c51 int cur, min, max; member in struct:cmd_buf
80 __cmd->buf[__cmd->cur] = c;
81 __cmd->cur = (__cmd->cur >= CMDBUF_SIZE - 1) ? __cmd->cur :
82 __cmd->cur + 1;
83 if (__cmd->cur >= __cmd->max)
84 __cmd->max = __cmd->cur;
97 if (__cmd->cur > 0) {
98 __cmd->buf[--__cmd->cur]
[all...]
/netbsd-current/usr.bin/vmstat/
H A Ddrvstats.c51 struct _drive cur, last; variable in typeref:struct:_drive
72 * the delta values in the 'cur' structure.
81 tmp = cur.fld; \
82 cur.fld -= last.fld; \
88 timerset(&(cur.x), &tmp_timer); \
89 timersub(&tmp_timer, &(last.x), &(cur.x)); \
97 if (!cur.select[i])
105 if ((cur.rxfer[i] == 0 && cur.wxfer[i] == 0)
106 || cur
[all...]
/netbsd-current/external/bsd/pdisk/dist/
H A Dvalidate.c186 range_list *cur; local
188 for (cur = list; cur != 0; ) {
189 item = cur;
190 cur = cur->next;
200 range_list *cur; local
216 cur = *list;
218 if (cur == 0) {
222 if (low <= cur
276 range_list *cur; local
302 range_list *cur; local
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/utils/
H A Dbash-autocomplete.sh13 local cur prev words cword arg flags w1 w2
20 cur="${COMP_WORDS[$cword]}"
54 [[ "$cur" == '=' || "$cur" == -*= ]] && cur=""
56 elif [[ "$cur" == '=' ]]; then
62 COMPREPLY=( $( compgen -W "$flags" -- "$cur" ) )
/netbsd-current/external/gpl3/binutils/dist/gprofng/libcollector/
H A Dunwind.c1496 getRegVal (struct AdvWalkContext *cur, int r, int *undefRez) argument
1498 if (cur->regs[r] == 0)
1502 tprintf (DBG_LT3, "getRegVal: returns cur->regs[RBP]=0x%lx cur->pc=0x%lx\n",
1503 (unsigned long) cur->fp, (unsigned long) cur->pc);
1504 return (unsigned long) cur->fp;
1508 tprintf (DBG_LT3, "getRegVal: cur->regs[%d]=0x%lx cur->pc=0x%lx\n",
1509 r, (unsigned long) cur
1662 process_return_real(struct WalkContext *wctx, struct AdvWalkContext *cur, int cache_on) argument
1744 process_return(struct WalkContext *wctx, struct AdvWalkContext *cur) argument
1903 struct AdvWalkContext *cur = buf; local
[all...]
/netbsd-current/crypto/external/cpl/trousers/dist/src/tcs/
H A Dtcs_context_key.c34 struct keys_loaded *cur, *prev; local
39 cur = prev = c->keys;
41 while (cur != NULL) {
42 key_mgr_dec_ref_count(cur->key_handle);
43 cur = cur->next;
45 prev = cur;
81 struct keys_loaded *cur, *prev; local
91 for (prev = cur = c->keys; cur; pre
[all...]

Completed in 358 milliseconds

1234567891011>>