| /src/sys/arch/zaurus/stand/zboot/ |
| pathfs.c | 88 struct linux_stat lsb; local 91 rv = ufstat((int)fd->f_devdata, &lsb); 95 sb->st_ino = lsb.lst_ino; 96 sb->st_mode = lsb.lst_mode; 97 sb->st_nlink = lsb.lst_nlink; 98 sb->st_uid = lsb.lst_uid; 99 sb->st_gid = lsb.lst_gid; 100 sb->st_size = lsb.lst_size; 101 sb->st_blksize = lsb.lst_blksize; 102 sb->st_blocks = lsb.lst_blocks [all...] |
| /src/sys/arch/evbarm/iq31244/ |
| iq31244_7seg.c | 223 uint8_t msb, lsb; local 226 lsb = iq80321_7seg_xlate(b); 231 WRITE(IQ80321_7SEG_LSB, lsb);
|
| /src/sys/arch/evbarm/iq80310/ |
| iq80310_7seg.c | 222 uint8_t msb, lsb; local 225 lsb = iq80310_7seg_xlate(b); 230 CPLD_WRITE(IQ80310_7SEG_LSB, lsb);
|
| /src/sys/arch/evbarm/iq80321/ |
| iq80321_7seg.c | 223 uint8_t msb, lsb; local 226 lsb = iq80321_7seg_xlate(b); 231 WRITE(IQ80321_7SEG_LSB, lsb);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/ |
| nouveau_nvkm_subdev_acr_gp102.c | 43 struct lsb_header_v1 lsb; local 55 nvkm_robj(acr->wpr, hdr.lsb_offset, &lsb, sizeof(lsb)); 56 lsb_header_v1_dump(&acr->subdev, &lsb); 58 lsfw->func->bld_patch(acr, lsb.tail.bl_data_off, adjust); 77 nvkm_wobj(acr->wpr, lsfw->offset.lsb, &hdr, sizeof(hdr)); 93 .lsb_offset = lsfw->offset.lsb, 104 /* Write LSB header. */ 151 lsfw->offset.lsb = wpr;
|
| nouveau_nvkm_subdev_acr_gm200.c | 65 struct lsb_header lsb; local 77 nvkm_robj(acr->wpr, hdr.lsb_offset, &lsb, sizeof(lsb)); 78 lsb_header_dump(subdev, &lsb); 80 lsfw->func->bld_patch(acr, lsb.tail.bl_data_off, adjust); 118 nvkm_wobj(acr->wpr, lsfw->offset.lsb, &hdr, sizeof(hdr)); 133 .lsb_offset = lsfw->offset.lsb, 143 /* Write LSB header. */ 186 lsfw->offset.lsb = wpr;
|
| /src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
| crt0-efi-ia64.S | 39 .psr lsb 40 .lsb
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_init.c | 146 struct stat hsb, lsb; local 226 switch (exrc_isok(sp, &lsb, _PATH_NEXRC, 0, 0)) { 228 if (exrc_isok(sp, &lsb, _PATH_EXRC, 0, 0) == RCOK && 229 (lsb.st_dev != hsb.st_dev || 230 lsb.st_ino != hsb.st_ino) && 237 if ((lsb.st_dev != hsb.st_dev || 238 lsb.st_ino != hsb.st_ino) &&
|
| /src/sys/dev/isa/ |
| smsc.c | 145 uint8_t rev, msb, lsb, chipid; local 179 lsb = smsc_readreg(ia->ia_iot, ioh, SMSC_IO_BASE_LSB); 180 address = (msb << 8) | lsb; 329 uint8_t msb, lsb; local 340 /* reading lsb first locks msb... */ 341 lsb = smsc_readreg(sc->sc_iot, sc->sc_ioh, reg); 343 rpm = (msb << 8) | lsb;
|
| /src/external/gpl3/gdb.old/dist/sim/or1k/ |
| or1k.c | 124 or1k32bf_h_spr_field_get_raw (sim_cpu *current_cpu, USI addr, int msb, int lsb) 130 return LSEXTRACTED (or1k_cpu->spr[addr], msb, lsb); 134 or1k32bf_h_spr_field_set_raw (sim_cpu *current_cpu, USI addr, int msb, int lsb, 139 or1k_cpu->spr[addr] &= ~LSMASK32 (msb, lsb); 140 or1k_cpu->spr[addr] |= LSINSERTED (val, msb, lsb);
|
| or1k-sim.h | 83 int lsb); 85 int lsb, USI val);
|
| /src/external/gpl3/gdb/dist/sim/or1k/ |
| or1k.c | 124 or1k32bf_h_spr_field_get_raw (sim_cpu *current_cpu, USI addr, int msb, int lsb) 130 return LSEXTRACTED (or1k_cpu->spr[addr], msb, lsb); 134 or1k32bf_h_spr_field_set_raw (sim_cpu *current_cpu, USI addr, int msb, int lsb, 139 or1k_cpu->spr[addr] &= ~LSMASK32 (msb, lsb); 140 or1k_cpu->spr[addr] |= LSINSERTED (val, msb, lsb);
|
| or1k-sim.h | 83 int lsb); 85 int lsb, USI val);
|
| /src/sys/sys/ |
| pax.h | 128 #define PAX_ASLR_DELTA(delta, lsb, len) \ 129 (((delta) & ((1UL << (len)) - 1)) << (lsb))
|
| /src/sys/dev/i2c/ |
| w83795g.c | 274 uint8_t msb, lsb; local 281 iic_smbus_read_byte(sc->sc_tag, sc->sc_addr, W83795G_VR_LSB, &lsb, 0); 289 edata->value_cur = (msb << 2 | lsb >> 6) * 6000; 291 edata->value_cur = (msb << 2 | lsb >> 6) * 2000; 294 edata->value_cur = ((int8_t)msb << 2 | lsb >> 6) * 250000 + 298 edata->value_cur = 1350000 / (msb << 4 | lsb >> 4); 311 uint8_t index, msb, lsb; local 340 iic_smbus_read_byte(sc->sc_tag, sc->sc_addr, index, &lsb, 0); 342 lsb >>= 4; 344 lsb &= 0xf [all...] |
| mpl115a.c | 84 static uint16_t mpl115a_make_coeff(uint8_t msb, uint8_t lsb); 126 /* Construct a coefficients from MSB and LSB bytes. */ 128 mpl115a_make_coeff(uint8_t msb, uint8_t lsb) 132 rv = le16toh((msb << 8) | lsb); 135 aprint_normal("msb %x, lsb %x, ret val %x\n", msb, lsb, rv);
|
| /src/sys/arch/next68k/next68k/ |
| clock.c | 102 timer->lsb = cnt;
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| aarch64-opc.h | 248 int lsb; member in struct:aarch64_field 484 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */ 491 ret->lsb = field->lsb + lsb_rel; 503 assert (field->width < 32 && field->width >= 1 && field->lsb >= 0 504 && field->lsb + field->width <= 32); 506 value <<= field->lsb; 523 value = (code >> field->lsb) & gen_mask (field->width);
|
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| aarch64-opc.h | 247 int lsb; member in struct:aarch64_field 483 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */ 490 ret->lsb = field->lsb + lsb_rel; 502 assert (field->width < 32 && field->width >= 1 && field->lsb >= 0 503 && field->lsb + field->width <= 32); 505 value <<= field->lsb; 522 value = (code >> field->lsb) & gen_mask (field->width);
|
| /src/external/gpl3/gdb/dist/opcodes/ |
| aarch64-opc.h | 248 int lsb; member in struct:aarch64_field 484 /* LSB_REL is the relative location of the lsb in the sub field, starting from 0. */ 491 ret->lsb = field->lsb + lsb_rel; 503 assert (field->width < 32 && field->width >= 1 && field->lsb >= 0 504 && field->lsb + field->width <= 32); 506 value <<= field->lsb; 523 value = (code >> field->lsb) & gen_mask (field->width);
|
| /src/external/lgpl3/gmp/dist/mpn/arm/ |
| udiv.asm | 69 and r8, n0, #1 C save lsb of dividend 74 and lr, d, #1 C save lsb of divisor 88 add n1, r8, n1, lsl #1 C shift in omitted dividend lsb 89 tst lr, lr C test saved divisor lsb 93 adds n1, n1, n0 C fix remainder for omitted divisor lsb
|
| /src/tests/lib/libc/db/ |
| h_lfsr.c | 50 uint16_t lsb = *cur & 1; local 52 *cur ^= (-lsb) & 0xB400u;
|
| /src/external/lgpl3/gmp/dist/mpn/pa64/ |
| udiv.asm | 90 extrd,u n0,63,1,%r19 C save lsb of dividend 93 extrd,u d,63,1,%r20 C save lsb of divisor 104 shladd n1,1,%r19,n1 C shift in omitted dividend lsb 110 add,*nuv n1,q,n1 C fix remainder for omitted divisor lsb
|
| /src/sys/arch/next68k/dev/ |
| clockreg.h | 137 u_char lsb; member in struct:timer_reg
|
| /src/sys/kern/ |
| kgdb_stub.c | 201 int msb, lsb; local 207 lsb = digit2i(*src++); 208 if (lsb < 0) 210 *dst++ = (msb << 4) | lsb;
|