Searched refs:inc (Results 176 - 200 of 333) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.cpp50 void GCNRegPressure::inc(unsigned Reg, function in class:GCNRegPressure
289 ECDefPressure.inc(Reg, LaneBitmask::getNone(), DefMask, *MRI);
292 DefPressure.inc(Reg, LaneBitmask::getNone(), DefMask, *MRI);
301 CurPressure.inc(Reg, PrevMask, LiveMask, *MRI);
319 CurPressure.inc(U.RegUnit, PrevMask, LiveMask, *MRI);
378 CurPressure.inc(MO.getReg(), PrevMask, It->second, *MRI);
387 CurPressure.inc(MO.getReg(), It->second, LaneBitmask::getNone(), *MRI);
411 CurPressure.inc(Reg, PrevMask, LiveMask, *MRI);
/freebsd-current/tools/test/stress2/misc/
H A Dall.sh165 [ -f all.debug.inc ] && . all.debug.inc
/freebsd-current/contrib/ntp/sntp/libopts/
H A DMakefile.am44 MakeDefs.inc README _Noreturn.h \
/freebsd-current/crypto/openssh/
H A Dsshd.c934 struct sshbuf *m = NULL, *inc = NULL; local
941 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
946 if ((r = sshbuf_put_cstring(inc, item->selector)) != 0 ||
947 (r = sshbuf_put_cstring(inc, item->filename)) != 0 ||
948 (r = sshbuf_put_stringb(inc, item->contents)) != 0)
962 (r = sshbuf_put_stringb(m, inc)) != 0)
968 sshbuf_free(inc);
976 struct sshbuf *m, *inc; local
984 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
993 (r = sshbuf_get_stringb(m, inc)) !
[all...]
/freebsd-current/sys/contrib/pcg-c/include/
H A Dpcg_variants.h357 uint8_t inc; member in struct:pcg_state_setseq_8
362 uint16_t inc; member in struct:pcg_state_setseq_16
367 uint32_t inc; member in struct:pcg_state_setseq_32
372 uint64_t inc; member in struct:pcg_state_setseq_64
378 pcg128_t inc; member in struct:pcg_state_setseq_128
440 rng->state = rng->state * PCG_DEFAULT_MULTIPLIER_8 + rng->inc;
447 rng->inc);
488 rng->state = rng->state * PCG_DEFAULT_MULTIPLIER_16 + rng->inc;
495 PCG_DEFAULT_MULTIPLIER_16, rng->inc);
536 rng->state = rng->state * PCG_DEFAULT_MULTIPLIER_32 + rng->inc;
[all...]
/freebsd-current/sys/dev/dpaa/
H A Dif_dtsec.c57 #include <contrib/ncsw/inc/integrations/dpaa_integration_ext.h>
58 #include <contrib/ncsw/inc/Peripherals/fm_mac_ext.h>
59 #include <contrib/ncsw/inc/Peripherals/fm_port_ext.h>
60 #include <contrib/ncsw/inc/flib/fsl_fman_dtsec.h>
61 #include <contrib/ncsw/inc/xx_ext.h>
H A Dif_dtsec_rm.c51 #include <contrib/ncsw/inc/integrations/dpaa_integration_ext.h>
52 #include <contrib/ncsw/inc/Peripherals/fm_ext.h>
53 #include <contrib/ncsw/inc/Peripherals/fm_mac_ext.h>
54 #include <contrib/ncsw/inc/Peripherals/fm_port_ext.h>
55 #include <contrib/ncsw/inc/xx_ext.h>
H A Dfman_mdio.c49 #include <contrib/ncsw/inc/Peripherals/fm_ext.h>
/freebsd-current/usr.sbin/newsyslog/
H A Dnewsyslog.c895 struct include_entry *inc; local
910 inc = malloc(sizeof(struct include_entry));
911 if (inc == NULL)
912 err(1, "malloc of inc");
913 inc->file = conf;
914 if (inc->file == NULL)
915 inc->file = _PATH_CONF;
916 STAILQ_INSERT_TAIL(&inclist, inc, inc_nextp);
918 STAILQ_FOREACH(inc, &inclist, inc_nextp) {
919 if (strcmp(inc
1822 struct include_entry *inc; local
[all...]
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dx86-mont.pl184 &inc ($j); # j++
221 &inc ($i); # i++
249 &inc ($j); # j++
360 &inc ($j);
455 &inc ($j);
/freebsd-current/sys/netpfil/ipfw/
H A Ddn_sched_fq_pie.c289 int inc = 0; local
292 inc = -1;
294 inc = 1;
305 si->main_q.ni.length += inc;
309 q->stats.length += inc;
313 si->_si.ni.length += inc;
317 if (inc > 0) {
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_proxy.c1109 /* inc(I) - delta to apply to TCP sequence numbering */
1117 ipf_proxy_fixseqack(fr_info_t *fin, ip_t *ip, ap_session_t *aps, int inc) argument
1129 * ip_len has already been adjusted by 'inc'.
1134 inc2 = inc;
1135 inc = (int)inc2;
1161 if (inc && (seq1 > aps->aps_seqmin[!sel])) {
1163 aps->aps_seqoff[sel] = aps->aps_seqoff[sel] + inc;
1167 aps->aps_seqoff[sel], inc);
1213 if (inc && (seq1 > aps->aps_ackmin[!sel])) {
1215 aps->aps_ackoff[!sel] = aps->aps_ackoff[sel] + inc;
[all...]
/freebsd-current/sys/dev/mlx4/mlx4_core/
H A Dmlx4_icm.c357 int inc = MLX4_TABLE_CHUNK_SIZE / table->obj_size; local
361 for (i = start; i <= end; i += inc) {
371 i -= inc;
/freebsd-current/sys/contrib/libb2/
H A Dblake2b-ref.c75 static inline int blake2b_increment_counter( blake2b_state *S, const uint64_t inc )
77 S->t[0] += inc;
78 S->t[1] += ( S->t[0] < inc );
H A Dblake2s-ref.c70 static inline int blake2s_increment_counter( blake2s_state *S, const uint32_t inc )
72 S->t[0] += inc;
73 S->t[1] += ( S->t[0] < inc );
/freebsd-current/contrib/libpcap/msdos/
H A Dmakefile17 WATT_INC = $(WATT_ROOT)\inc
138 pcap.h pcap-bpf.h msdos\pktdrvr.h msdos\pkt_stub.inc
176 pcap.h pcap-bpf.h msdos\pktdrvr.h msdos\pkt_stub.inc
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dfallible_iterator.h27 /// Error inc();
120 /// If the underlying 'inc' operation fails, this will set the Error value
124 /// 'inc' operation succeeds or fails.
127 if (auto Err = I.inc())
/freebsd-current/crypto/openssl/crypto/modes/
H A Dccm128.c296 static void ctr64_add(unsigned char *counter, size_t inc) argument
303 val += counter[n] + (inc & 0xff);
306 inc >>= 8;
307 } while (n && (inc || val));
/freebsd-current/crypto/openssl/crypto/rc4/asm/
H A Drc4-x86_64.pl26 # register arithmetics. For example instead of 'inc %r8; and $255,%r8'
27 # I simply 'inc %r8b'. Even though optimization manual discourages
51 # P4 EM64T core appears to be "allergic" to 64-bit inc/dec. Replacing
181 inc $XX[0]#b
199 inc $XX[0]#b
257 inc $XX[0]#b
335 inc $XX[0]#b
/freebsd-current/stand/i386/pxeldr/
H A Dpxeldr.S86 start: cld # string ops inc
240 seta20.1: inc %cx # Increment, overflow?
/freebsd-current/usr.bin/mail/
H A Dcmdtab.c113 { "inc", inc, T|NOLIST, 0, 0 },
H A Dextern.h145 int inc(void *);
/freebsd-current/sys/amd64/amd64/
H A Dxen-locore.S41 #include "assym.inc"
121 inc %eax
/freebsd-current/sys/contrib/ck/include/gcc/ppc64/
H A Dck_pr.h326 CK_PR_UNARY(inc, ptr, void, void *, "addic %0, %0, 1", "d")
332 CK_PR_UNARY(inc, S, T, T, "addic %0, %0, 1", W) \
/freebsd-current/libexec/rtld-elf/rtld-libc/
H A DMakefile.inc92 rtld_libc.a: ${LIBC_NOSSP_PIC} ${SRCTOP}/libexec/rtld-elf/rtld-libc/Makefile.inc

Completed in 515 milliseconds

1234567891011>>