Home
last modified time | relevance | path

Searched refs:ints (Results 1 – 25 of 114) sorted by relevance

12345

/openbsd-src/sys/arch/luna88k/stand/boot/
H A Dsc.c501 u_char ints, temp; in scintr() local
506 if ((ints = hd->scsi_ints) == 0) in scintr()
511 ints, hd->scsi_ssts, hd->scsi_pctl, hd->scsi_psns, in scintr()
514 if (ints & INTS_RESEL) { in scintr()
524 } else if (ints & INTS_DISCON) { in scintr()
535 hd->scsi_ints = ints; in scintr()
539 } else if (ints & INTS_CMD_DONE) { in scintr()
544 hd->scsi_ints = ints; in scintr()
550 } else if (ints & INTS_SRV_REQ) { in scintr()
553 } else if (ints & INTS_TIMEOUT) { in scintr()
[all …]
/openbsd-src/gnu/gcc/gcc/config/crx/
H A Dcrx.c422 (MIN_REG_FOR_PASSING_ARGS + cum->ints) + 1); in enough_regs_for_param()
447 if (targetm.calls.must_pass_in_stack (mode, type) || (cum->ints < 0)) in crx_function_arg()
457 return gen_rtx_REG (mode, MIN_REG_FOR_PASSING_ARGS + cum->ints); in crx_function_arg()
461 if (MIN_REG_FOR_PASSING_ARGS + cum->ints > MAX_REG_FOR_PASSING_ARGS) in crx_function_arg()
468 return gen_rtx_REG (mode, MIN_REG_FOR_PASSING_ARGS + cum->ints); in crx_function_arg()
483 cum->ints = 0; in crx_init_cumulative_args()
494 cum->ints = -1; in crx_init_cumulative_args()
513 if (targetm.calls.must_pass_in_stack (mode, type) || (cum->ints < 0)) in crx_function_arg_advance()
519 cum->ints += 1; in crx_function_arg_advance()
521 cum->ints += l; in crx_function_arg_advance()
[all …]
H A Dcrx.h316 int ints; member
/openbsd-src/sys/arch/luna88k/dev/
H A Dmb89352.c1580 u_char ints; in spc_intr()
1590 ints = bus_space_read_1(iot, ioh, INTS); in spc_intr()
1591 if (ints == 0) /* No interrupt event on this device */ in spc_intr()
1610 while ((ints = bus_space_read_1(iot, ioh, INTS)) == 0) in spc_intr()
1612 SPC_MISC(("ints = 0x%x ", ints)); in spc_intr()
1614 ints = bus_space_read_1(iot, ioh, INTS); in spc_intr()
1615 SPC_MISC(("ints = 0x%x ", ints)); in spc_intr()
1618 if ((ints in spc_intr()
1581 u_char ints; spc_intr() local
[all...]
/openbsd-src/gnu/llvm/clang/utils/ABITest/
H A DABITestGen.py489 ints = []
490 if opts.useChar: ints.append(('char',1))
491 if opts.useShort: ints.append(('short',2))
492 if opts.useInt: ints.append(('int',4))
494 if opts.useLong: ints.append(('long',4))
495 if opts.useLongLong: ints.append(('long long',8))
497 ints = ([('unsigned %s'%i,s) for i,s in ints] +
498 [('signed %s'%i,s) for i,s in ints])
499 builtins.extend(ints)
/openbsd-src/lib/libcbor/
H A DMakefile20 SRCS+= ints.c maps.c serialization.c streaming.c tags.c strings.c
29 HDRS+= cbor/ints.h cbor/maps.h cbor/serialization.h cbor/streaming.h
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920501-4.x2 # the 'r0' array is too large. Force to use 16-bit ints for it.
H A D920501-12.x2 # the stack arrays are too large. Force to use 16-bit ints for it.
H A D20010518-2.x2 # the array is too large (INT_MAX/2 > 64K). Force to use 16-bit ints for it.
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DDNB.cpp1221 Integers ints; in DNBProcessMemoryReadInteger() local
1222 if (DNBProcessMemoryRead(pid, addr, integer_size, &ints) == integer_size) { in DNBProcessMemoryReadInteger()
1225 return ints.u8; in DNBProcessMemoryReadInteger()
1227 return ints.u16; in DNBProcessMemoryReadInteger()
1229 return ints.u32 & 0xffffffu; in DNBProcessMemoryReadInteger()
1231 return ints.u32; in DNBProcessMemoryReadInteger()
1233 return ints.u32 & 0x000000ffffffffffull; in DNBProcessMemoryReadInteger()
1235 return ints.u32 & 0x0000ffffffffffffull; in DNBProcessMemoryReadInteger()
1237 return ints.u32 & 0x00ffffffffffffffull; in DNBProcessMemoryReadInteger()
1239 return ints.u64; in DNBProcessMemoryReadInteger()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dbitfield-1.m2 being "promoted" to ints). */
/openbsd-src/sys/dev/pci/
H A Dif_tl.c1239 u_int16_t ints = 0; in tl_intr() local
1245 ints = CSR_READ_2(sc, TL_HOST_INT); in tl_intr()
1246 CSR_WRITE_2(sc, TL_HOST_INT, ints); in tl_intr()
1247 type = (ints << 16) & 0xFFFF0000; in tl_intr()
1248 ivec = (ints & TL_VEC_MASK) >> 5; in tl_intr()
1249 ints = (ints & TL_INT_MASK) >> 2; in tl_intr()
1253 switch(ints) { in tl_intr()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCCallingConv.td121 // Only handle ints and floats. All ints are promoted to i64.
122 // Vector types and quadword ints are not handled.
136 // All small ints are promoted to i64. Vector types, quadword ints,
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstrInfo.td160 // out = max(a, b, c) a, b, and c are signed ints
165 // out = max(a, b, c) a, b and c are unsigned ints
175 // out = min(a, b, c) a, b and c are signed ints
180 // out = min(a, b) a and b are unsigned ints
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Drange.t461 my @ints = map $_+1, 0..($max-1);
463 $sum += $_ for @ints;
/openbsd-src/gnu/usr.bin/binutils-2.17/cpu/
H A Dsh.cpu337 ; Join 2 ints together in natural bit order.
342 ; Join 4 half-ints together in natural bit order.
349 ; Join 8 quarter-ints together in natural bit order.
/openbsd-src/gnu/gcc/gcc/config/c4x/
H A Dc4x.c517 cum->floats = cum->ints = 0; in c4x_init_cumulative_args()
569 cum->ints++; in c4x_init_cumulative_args()
605 cum->ints++; in c4x_function_arg_advance()
613 cum->ints++; in c4x_function_arg_advance()
645 cum->maxints = (cum->ints > 6 - cum->maxfloats) ? in c4x_function_arg()
646 6 - cum->maxfloats : cum->ints; in c4x_function_arg()
652 cum->ints = cum->floats = 0; in c4x_function_arg()
675 if (cum->ints < cum->maxints) in c4x_function_arg()
676 reg = c4x_int_reglist[cum->maxfloats][cum->ints]; in c4x_function_arg()
691 reg = c4x_int_reglist[0][cum->ints]; in c4x_function_arg()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/c4x/
H A Dc4x.c515 cum->floats = cum->ints = 0;
567 cum->ints++;
606 cum->ints++;
614 cum->ints++;
649 cum->maxints = (cum->ints > 6 - cum->maxfloats) ?
650 6 - cum->maxfloats : cum->ints;
656 cum->ints = cum->floats = 0;
679 if (cum->ints < cum->maxints)
680 reg = c4x_int_reglist[cum->maxfloats][cum->ints];
695 reg = c4x_int_reglist[0][cum->ints];
/openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/
H A Dperlfaq4.pod1961 sets C<$vec> to have bit N set only if C<$ints[N]> was set:
1963 my @ints = (...); # array of bits, e.g. ( 1, 0, 0, 1, 1, 0 ... )
1965 foreach( 0 .. $#ints ) {
1966 vec($vec,$_,1) = 1 if $ints[$_];
1970 instance, if you had 16 entries in C<@ints>, C<$vec> only needs two
1974 your C<@ints> array:
1978 my @ints;
1987 push @ints, $i if vec($vec, ++$i, 1);
1988 push @ints, $i if vec($vec, ++$i, 1);
1989 push @ints,
[all...]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i370/
H A DREADME60 last register, it prevents 64-bit ints and small structures from being
/openbsd-src/gnu/llvm/llvm/lib/Target/Sparc/
H A DSparcCallingConv.td85 // Two ints in a struct are simply coerced to i64:
/openbsd-src/sys/dev/ic/
H A Ddc.c2423 u_int32_t status, ints; in dc_intr() local
2430 ints = CSR_READ_4(sc, DC_ISR); in dc_intr()
2431 if ((ints & DC_INTRS) == 0) in dc_intr()
2433 if (ints == 0xffffffff) in dc_intr()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dmachmode.def85 ints. Useful if a pointer is 4 bytes but has some bits that are
/openbsd-src/gnu/gcc/include/
H A DChangeLog224 when __GNUC__ is defined and ints are less than 32-bits wide.
/openbsd-src/lib/libpcap/
H A DCHANGES83 - Fixed Linux networking include files to use ints instead of longs to

12345