Searched refs:limit (Results 76 - 100 of 439) sorted by relevance

1234567891011>>

/openbsd-current/sys/dev/pci/
H A Damas.c43 * - base/limit registers (on 0x0f, 0x10, 0x11)
44 * - extended base/limit registers (on 0x10)
49 * base/limit registers use bits [31..16] to indicate address [39..24]
50 * extended base/limit registers use bits [7..0] to indicate address [47..40]
51 * base/limit addresses need to be shifted <<24 for memory address
52 * extended base/limit addresses need to be shifted <<40 for memory address
85 * - limit contains node selection bitmask [10..8] (on 0x0f, 0x10)
86 * - limit contains destination node [2..0] (on 0x0f, 0x10)
88 #define AMAS_DST_NODE(base, limit) ((limit)
234 pcireg_t base, ebase, limit, elimit; local
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/
H A DState.pm219 limit => shift,
226 limit => shift,
233 limit => shift,
238 $self->_select( limit => shift );
242 limit => shift,
249 limit => shift,
256 limit => shift,
262 limit => shift,
268 limit => shift,
274 limit
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/i386/
H A Datt.h39 { size_t i = 0, limit = (SIZE); \
40 while (i < limit) \
H A Di386-interix.h129 /* Some svr4 assemblers have a limit on the number of characters which
132 limit. Note that at least some svr4 assemblers have a limit on the
193 register const unsigned char *limit = _ascii_bytes + (LENGTH); \
195 for (; _ascii_bytes < limit; _ascii_bytes++) \
203 for (p = _ascii_bytes; p < limit && *p != '\0'; p++) \
205 if (p < limit && (p - _ascii_bytes) <= (long) STRING_LIMIT) \
/openbsd-current/gnu/gcc/gcc/
H A Dtree-ssa-loop-ch.c47 instructions should be duplicated, limit is decreased by the actual
52 int *limit)
90 *limit -= estimate_num_insns (last);
91 if (*limit < 0)
151 int limit = 20; local
165 /* Iterate the header copying up to limit; this takes care of the cases
173 while (should_duplicate_loop_header_p (header, loop, &limit))
51 should_duplicate_loop_header_p(basic_block header, struct loop *loop, int *limit) argument
/openbsd-current/usr.bin/skeyaudit/
H A Dskeyaudit.c72 int ch, left, aflag, iflag, limit; local
78 limit = 12;
91 if ((limit = (int)strtol(optarg, NULL, 10)) == 0)
94 warn("key limit");
129 if (left >= limit)
158 if (left < limit)
253 (void)fprintf(stderr, "usage: %s [-ai] [-l limit]\n",
/openbsd-current/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-io.c407 int count, limit, printed_len; local
431 limit = screenwidth / max;
432 if (limit != 1 && (limit * max == screenwidth))
433 limit--;
436 limit will be 0 and a divide-by-zero fault will result. */
437 if (limit == 0)
438 limit = 1;
441 count = (len + (limit - 1)) / limit;
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dobstack.c177 h->chunk_limit = chunk->limit
223 h->chunk_limit = chunk->limit
259 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size;
314 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
341 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
353 h->chunk_limit = lp->limit;
373 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj))
385 h->chunk_limit = lp->limit;
402 nbytes += lp->limit - (char *) lp;
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dcgen-bitset.c129 unsigned i, limit; local
135 limit = mask1->length < mask2->length ? mask1->length : mask2->length;
137 for (i = 0; i < limit; ++i)
/openbsd-current/usr.sbin/lpr/filters/
H A Dlpf.c71 char *limit; local
182 for (cp = buf[i], limit = cp+maxcol[i]; cp <= limit;) {
/openbsd-current/sys/dev/pci/drm/amd/pm/powerplay/smumgr/
H A Dsmu7_smumgr.c38 static int smu7_set_smc_sram_address(struct pp_hwmgr *hwmgr, uint32_t smc_addr, uint32_t limit) argument
41 PP_ASSERT_WITH_CODE((limit > (smc_addr + 3)), "SMC addr is beyond the SMC RAM area.", return -EINVAL);
49 int smu7_copy_bytes_from_smc(struct pp_hwmgr *hwmgr, uint32_t smc_start_address, uint32_t *dest, uint32_t byte_count, uint32_t limit) argument
58 PP_ASSERT_WITH_CODE((limit > (smc_start_address + byte_count)), "SMC address is beyond the SMC RAM area.", return -EINVAL);
63 smu7_read_smc_sram_dword(hwmgr, addr, &data, limit);
73 smu7_read_smc_sram_dword(hwmgr, addr, &data, limit);
86 const uint8_t *src, uint32_t byte_count, uint32_t limit)
95 PP_ASSERT_WITH_CODE((limit > (smc_start_address + byte_count)), "SMC address is beyond the SMC RAM area.", return -EINVAL);
103 result = smu7_set_smc_sram_address(hwmgr, addr, limit);
119 result = smu7_set_smc_sram_address(hwmgr, addr, limit);
85 smu7_copy_bytes_to_smc(struct pp_hwmgr *hwmgr, uint32_t smc_start_address, const uint8_t *src, uint32_t byte_count, uint32_t limit) argument
265 smu7_read_smc_sram_dword(struct pp_hwmgr *hwmgr, uint32_t smc_addr, uint32_t *value, uint32_t limit) argument
276 smu7_write_smc_sram_dword(struct pp_hwmgr *hwmgr, uint32_t smc_addr, uint32_t value, uint32_t limit) argument
454 smu7_upload_smc_firmware_data(struct pp_hwmgr *hwmgr, uint32_t length, uint32_t *src, uint32_t limit) argument
[all...]
/openbsd-current/gnu/gcc/gcc/config/cris/
H A Daout.h140 /* Some svr4 assemblers have a limit on the number of characters which
143 limit. Note that at least some svr4 assemblers have a limit on the
211 register const unsigned char *limit = _ascii_bytes + (LENGTH); \
214 for (; _ascii_bytes < limit; _ascii_bytes++) \
224 for (p = _ascii_bytes; p < limit && *p != '\0'; p++) \
227 if (p < limit && (p - _ascii_bytes) <= (long)STRING_LIMIT) \
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Di386-interix.h124 /* Some svr4 assemblers have a limit on the number of characters which
127 limit. Note that at least some svr4 assemblers have a limit on the
188 const unsigned char *limit = _ascii_bytes + (LENGTH); \
190 for (; _ascii_bytes < limit; _ascii_bytes++) \
198 for (p = _ascii_bytes; p < limit && *p != '\0'; p++) \
200 if (p < limit && (p - _ascii_bytes) <= (long) STRING_LIMIT) \
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dsymtab.h109 Sym *limit; /* Limit = base + len. */
108 Sym *limit; /* Limit = base + len. */ member in struct:__anon5408
/openbsd-current/gnu/usr.bin/gcc/gcc/config/cris/
H A Daout.h159 /* Some svr4 assemblers have a limit on the number of characters which
162 limit. Note that at least some svr4 assemblers have a limit on the
230 register const unsigned char *limit = _ascii_bytes + (LENGTH); \
233 for (; _ascii_bytes < limit; _ascii_bytes++) \
243 for (p = _ascii_bytes; p < limit && *p != '\0'; p++) \
246 if (p < limit && (p - _ascii_bytes) <= (long)STRING_LIMIT) \
/openbsd-current/sys/dev/pci/drm/radeon/
H A Drv770_smc.h192 u16 byte_count, u16 limit);
201 u16 smc_address, u32 *value, u16 limit);
203 u16 smc_address, u32 value, u16 limit);
205 u16 limit);
/openbsd-current/lib/libcurses/tinfo/
H A Dwrite_entry.c79 unsigned limit = sizeof(buffer); local
82 if (_nc_write_object(tp, buffer, &offset, limit) == ERR) {
83 _nc_warning("entry is larger than %u bytes", limit);
147 make_db_path(char *dst, const char *src, size_t limit) argument
153 if (strlen(src) + 1 <= limit) {
154 _nc_STRCPY(dst, src, limit);
158 if ((strlen(top) + strlen(src) + 6) <= limit) {
159 _nc_SPRINTF(dst, _nc_SLIMIT(limit) "%s/%s", top, src);
169 if (have + need <= limit) {
170 _nc_STRCAT(dst, suffix, limit);
294 unsigned limit = sizeof(buffer); local
554 fake_write(char *dst, unsigned *offset, size_t limit, char *src, size_t want, size_t size) argument
720 _nc_write_object(TERMTYPE2 *tp, char *buffer, unsigned *offset, unsigned limit) argument
[all...]
H A Dread_entry.c200 fake_read(char *src, int *offset, int limit, char *dst, unsigned want) argument
202 int have = (limit - *offset);
215 #define Read(buf, count) fake_read(buffer, &offset, limit, (char *) buf, (unsigned) count)
264 valid_shorts(char *buffer, int limit) argument
268 for (n = 0; n < limit; ++n) {
282 _nc_read_termtype(TERMTYPE2 *ptr, char *buffer, int limit) argument
295 (T_CALLED("_nc_read_termtype(ptr=%p, buffer=%p, limit=%d)"),
296 (void *) ptr, buffer, limit));
595 int limit; local
598 limit
623 make_db_filename(char *filename, unsigned limit, const char *const path) argument
648 make_dir_filename(char *filename, unsigned limit, const char *const path, const char *name) argument
774 _nc_read_tic_entry(char *filename, unsigned limit, const char *const path, const char *name, TERMTYPE2 *const tp) argument
[all...]
/openbsd-current/sys/arch/i386/i386/
H A Dgdt.c60 setgdt(int sel, void *base, size_t limit, int type, int dpl, int def32, argument
69 setsegment(sd, base, limit, type, dpl, def32, gran);
/openbsd-current/sys/arch/arm/arm/
H A Ddb_interface.c220 size_t limit, savesize; local
238 limit = L1_S_SIZE - ((vaddr_t)dst & L1_S_OFFSET);
247 limit = L2_S_SIZE - ((vaddr_t)dst & L2_S_OFFSET);
266 if (limit > size)
267 limit = size;
268 size -= limit;
274 for (; limit > 0; limit--)
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/YAMLish/
H A DReader.pm196 my ( $self, $limit ) = @_;
203 if $indent < $limit
207 if ( $indent > $limit ) {
238 my ( $self, $line, $limit ) = @_;
256 and $next_indent <= $limit # next line is same or less indentation
267 if $indent < $limit
/openbsd-current/sys/arch/powerpc64/powerpc64/
H A Ddb_trace.c135 vaddr_t iaddr, limit; local
139 limit = MIN(iaddr + 0x100, callpc);
140 for (; iaddr < limit; iaddr += 4) {
206 struct callframe *frame, *lastframe, *limit; local
215 limit = (struct callframe *)(p->p_addr + USPACE - FRAMELEN);
228 if (frame >= limit)
/openbsd-current/gnu/usr.bin/gcc/gcc/java/
H A Dgjavah.c348 const unsigned char *limit = str + length;
349 while (str < limit)
351 int ch = UTF8_GET (str, limit);
373 const unsigned char *s, *p, *limit;
377 limit = s + len;
379 while (s < limit)
381 int c = UTF8_GET (s, limit);
386 while (p < limit)
388 int ch = UTF8_GET (p, limit);
405 const unsigned char *limit
347 const unsigned char *limit = str + length; variable
372 const unsigned char *s, *p, *limit; local
404 const unsigned char *limit = str + length; local
981 const unsigned char *limit; local
1406 const unsigned char *limit = str + length; variable
1468 const unsigned char *limit = str + length; variable
1495 unsigned char *limit = signature + sig_len; variable
1583 const unsigned char *limit = str + length; variable
1675 const unsigned char *s, *p, *limit; local
[all...]
H A Dtypeck.c477 parse_signature_type (ptr, limit)
478 const unsigned char **ptr, *limit;
482 if (*ptr >= limit)
497 for ((*ptr)++; (*ptr) < limit && ISDIGIT (**ptr); ) (*ptr)++;
498 type = parse_signature_type (ptr, limit);
507 if (str >= limit)
533 const unsigned char *limit = str + sig_length; local
535 if (str < limit && str[0] == '(')
539 while (str < limit && str[0] != ')')
541 tree argtype = parse_signature_type (&str, limit);
[all...]
/openbsd-current/libexec/tradcpp/
H A Dfiles.c124 findeol(const char *buf, size_t start, size_t limit) argument
131 for (i=start; i<limit; i++) {
133 if (i+1 < limit && buf[i] == '*' && buf[i+1] == '/') {
137 } else if (!inquote && i+1 < limit &&
141 } else if (i+1 < limit &&
153 return limit;
158 countnls(const char *buf, size_t start, size_t limit) argument
163 for (i=start; i<limit; i++) {

Completed in 448 milliseconds

1234567891011>>