| /src/lib/libc/gen/ |
| signalnumber.c | 48 long offs; local 78 offs = strtol(name+1, &ep, 10); 80 offs < 0 || offs > SIGRTMAX-SIGRTMIN) 83 i += (int)offs; 85 i -= (int)offs;
|
| /src/lib/libusbhid/ |
| data.c | 43 int i, end, offs; local 54 offs = hpos / 8; 55 end = (hpos + hsize + 7) / 8 - offs; 58 data |= ((uint32_t)buf[offs + i]) << (i*8); 76 int i, end, offs, mask; local 95 offs = hpos / 8; 96 end = (hpos + hsize) / 8 - offs; 99 buf[offs + i] = (buf[offs + i] & ((uint32_t)mask >> (i*8))) |
|
| /src/external/bsd/mdocml/dist/ |
| man.c | 44 man_parseln(struct roff_man *man, int ln, char *buf, int offs) 50 return roff_getcontrol(man->roff, buf, &offs) ? 51 man_pmacro(man, ln, buf, offs) : 52 man_ptext(man, ln, buf, offs); 74 man_descope(struct roff_man *man, int line, int offs, char *start) 96 roff_body_alloc(man, line, offs, man->last->tok); 101 man_ptext(struct roff_man *man, int line, char *buf, int offs) 109 roff_word_alloc(man, line, offs, buf + offs); 110 man_descope(man, line, offs, buf + offs) [all...] |
| mdoc.c | 62 mdoc_parseln(struct roff_man *mdoc, int ln, char *buf, int offs) 79 return roff_getcontrol(mdoc->roff, buf, &offs) ? 80 mdoc_pmacro(mdoc, ln, buf, offs) : 81 mdoc_ptext(mdoc, ln, buf, offs); 165 mdoc_ptext(struct roff_man *mdoc, int line, char *buf, int offs) 186 line, offs, &offs, buf); 197 for (c = end = buf + offs; *c; c++) { 240 if (buf[offs] == '\0' && (mdoc->flags & ROFF_NOFILL) == 0) { 257 roff_elem_alloc(mdoc, line, offs, ROFF_sp) [all...] |
| mdoc.h | 114 const char *offs; /* -offset */ member in struct:mdoc_bd 121 const char *offs; /* -offset */ member in struct:mdoc_bl
|
| /src/sys/arch/hppa/dev/ |
| sti_pci_machdep.c | 156 bus_addr_t selected, offs, suboffs; local 190 for (offs = 0; offs < romsize; offs += subsize) { 195 tmp = bus_space_read_4(pa->pa_memt, romh, offs + 0); 199 if (offs == 0) { 211 tmp = bus_space_read_4(pa->pa_memt, romh, offs + 4); 215 if (offs == 0) { 224 offs + 0x0c); 230 (u_int)offs, (u_int)subsize, tmp) [all...] |
| /src/sys/arch/hp300/hp300/ |
| leds.c | 71 * `offs' is a mask of LEDs to turn off, 78 ledcontrol(int ons, int offs, int togs) 86 : "d" (ons), "d" (~offs), "d" (togs));
|
| /src/lib/libexecinfo/ |
| backtrace.c | 97 rasprintf(char **buf, size_t *bufsiz, size_t offs, const char *fmt, ...) 103 if (*buf && offs < *bufsiz) { 108 len = vsnprintf(*buf + offs, *bufsiz - offs, fmt, ap); 111 if (len < 0 || (size_t)len + 1 < *bufsiz - offs) 115 nbufsiz = MAX(offs, *bufsiz) + 512; 134 format_string(char **buf, size_t *bufsiz, size_t offs, const char *fmt, 139 size_t o = offs; 173 return o - offs; 177 format_address(symtab_t *st, char **buf, size_t *bufsiz, size_t offs, 215 size_t offs = len * sizeof(char *); local [all...] |
| /src/sys/miscfs/procfs/ |
| procfs_fd.c | 51 off_t offs; local 56 offs = fp->f_offset; 60 error = (*fp->f_ops->fo_read)(fp, &offs, uio, curl->l_cred, 0); 63 error = (*fp->f_ops->fo_write)(fp, &offs, uio, curl->l_cred, 0);
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| recipient_list.h | 38 #define RECIPIENT_ASSIGN(rcpt, offs, orcpt, notify, orig, addr) do { \ 39 (rcpt)->offset = (offs); \
|
| /src/sys/dev/pci/ |
| sti_pci.c | 146 bus_addr_t selected, offs, suboffs; local 180 for (offs = 0; offs < romsize; offs += subsize) { 185 tmp = bus_space_read_4(pa->pa_memt, romh, offs + 0); 189 if (offs == 0) { 201 tmp = bus_space_read_4(pa->pa_memt, romh, offs + 4); 205 if (offs == 0) { 214 offs + 0x0c); 220 (u_int)offs, (u_int)subsize, tmp)) [all...] |
| /src/sys/arch/evbppc/pmppc/dev/ |
| if_cs_mainbus.c | 139 cs_io_read_1(struct cs_softc *sc, bus_size_t offs) 143 a = sc->sc_ioh + (offs << 2); 149 cs_io_read_2(struct cs_softc *sc, bus_size_t offs) 153 a = sc->sc_ioh + (offs << 2); 159 cs_io_read_multi_2(struct cs_softc *sc, bus_size_t offs, u_int16_t *buf, 164 a = sc->sc_ioh + (offs << 2); 172 cs_io_write_2(struct cs_softc *sc, bus_size_t offs, u_int16_t data) 177 a = sc->sc_ioh + (offs << 2); 185 cs_io_write_multi_2(struct cs_softc *sc, bus_size_t offs, 197 dp = (double *)(sc->sc_ioh + (offs << 2)) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| trad-frame.c | 120 int offs = 0, count; local 130 if (offs + slot_size > size) 134 offs += count * slot_size; 136 for (; count--; regno++, offs += slot_size) 153 trad_frame_set_reg_addr (this_trad_cache, regno, addr + offs); 159 if (target_read_memory (addr + offs, buf.data (), buf.size ())
|
| /src/external/gpl3/gdb/dist/gdb/ |
| trad-frame.c | 120 int offs = 0, count; local 130 if (offs + slot_size > size) 134 offs += count * slot_size; 136 for (; count--; regno++, offs += slot_size) 153 trad_frame_set_reg_addr (this_trad_cache, regno, addr + offs); 159 if (target_read_memory (addr + offs, buf.data (), buf.size ())
|
| /src/sys/arch/atari/stand/tostools/libtos/ |
| ahdi.c | 69 u_int offs = part->ap_st + esec; local 70 rv = ahdi_getparts(dd, ptable, offs, 71 esec == AHDI_BBLOCK ? offs : esec);
|
| /src/external/bsd/ntp/dist/scripts/ |
| summary.in | 135 my ($freq, $offs); 150 ($offs, $freq) = ($Fld[2], $Fld[3]); 151 $loop_tmax = max($loop_tmax, $offs); 152 $loop_tmin = min($loop_tmin, $offs); 155 $loop_time += $offs; 156 $loop_time_rms += $offs * $offs; 212 my ($dist, $offs); 224 $offs = $Fld[4]; 225 if ($offs > $skip_time_steps || $offs < -$skip_time_steps) [all...] |
| /src/external/bsd/file/dist/src/ |
| der.c | 273 size_t offs = 0, len = ms->search.s_len ? ms->search.s_len : nbytes; local 275 if (gettag(b, &offs, len) == DER_BAD) { 280 offs, m->offset)); 282 uint32_t tlen = getlength(b, &offs, len); 288 offs, tlen)); 290 offs += ms->offset + m->offset; 299 if (offs + tlen > nbytes) 301 ms->c.li[m->cont_level - 1].off = CAST(int, offs + tlen); 305 return CAST(int32_t, offs); 313 size_t offs = 0, len = ms->search.s_len local [all...] |
| /src/sys/arch/alpha/pci/ |
| tsreg.h | 54 #define TSFIELD(r,offs,len) (((r) >> (offs)) & (~0UL >> (64 - (len)))) 246 #define TS_P0(offs) (0x100##0000##0000UL + (offs)) 247 #define TS_P1(offs) (0x102##0000##0000UL + (offs)) 248 #define TS_Pn(n, offs) (0x100##0000##0000UL + 0x2##0000##0000UL * (n) + (offs))
|
| /src/sys/dev/cardbus/ |
| cardbusvar.h | 67 * pcitag_t tag, int offs); 69 * pcitag_t tag, int offs, pcireg_t val); 295 #define Cardbus_conf_read(ct, tag, offs) (*(ct)->ct_cf->cardbus_conf_read)((ct)->ct_cc, (tag), (offs)) 296 #define cardbus_conf_read(cc, cf, tag, offs) ((cf)->cardbus_conf_read)((cc), (tag), (offs)) 297 #define Cardbus_conf_write(ct, tag, offs, val) (*(ct)->ct_cf->cardbus_conf_write)((ct)->ct_cc, (tag), (offs), (val)) 298 #define cardbus_conf_write(cc, cf, tag, offs, val) ((cf)->cardbus_conf_write)((cc), (tag), (offs), (val) [all...] |
| /src/sys/dev/ic/ |
| oplvar.h | 48 int offs; member in struct:opl_softc 78 int offs; member in struct:opl_attach_arg
|
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efifs.h | 99 #define EFI_LBAL_ARRAY_SIZE(lbal,offs,blks) \ 100 (((blks) - (offs) - (lbal)->Hdr.HeaderSize) / sizeof(EFI_RL))
|
| /src/external/apache2/llvm/dist/clang/include/clang/Edit/ |
| FileOffset.h | 20 unsigned Offs = 0; 24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) {} 29 unsigned getOffset() const { return Offs; } 33 NewOffs.Offs += offset; 38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs; 46 return std::tie(LHS.FID, LHS.Offs) < std::tie(RHS.FID, RHS.Offs); [all...] |
| /src/external/cddl/osnet/dev/dtrace/aarch64/ |
| dtrace_subr.c | 263 int offs; local 276 offs = (data >> OFFSET_SHIFT) & OFFSET_MASK; 280 if (offs >> (OFFSET_SIZE - 1)) 281 sp -= (~offs & OFFSET_MASK) + 1; 283 sp += (offs); 290 if (offs >> (OFFSET_SIZE - 1)) 291 sp -= (~offs & OFFSET_MASK) + 1; 293 sp += (offs);
|
| /src/common/dist/zlib/contrib/infback9/ |
| inftree9.c | 54 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 130 offs[1] = 0; 132 offs[len + 1] = offs[len] + count[len]; 136 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
| /src/common/dist/zlib/ |
| inftrees.c | 56 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 138 offs[1] = 0; 140 offs[len + 1] = offs[len] + count[len]; 144 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|