/openbmc/linux/fs/cachefiles/ |
H A D | io.c | 105 if (off2 == 0) in cachefiles_read() 107 if (off2 < 0 && off2 >= (loff_t)-MAX_ERRNO && off2 != -ENXIO) { in cachefiles_read() 109 ret = off2; in cachefiles_read() 113 if (off2 == -ENXIO || off2 >= start_pos + len) { in cachefiles_read() 128 skipped = off2 - off; in cachefiles_read() 203 loff_t off, off2; in cachefiles_query_occupancy() local 230 if (off2 == 0) in cachefiles_query_occupancy() 232 if (off2 == -ENXIO) in cachefiles_query_occupancy() 234 if (off2 < 0 && off2 >= (loff_t)-MAX_ERRNO) in cachefiles_query_occupancy() 239 off2 = round_down(off2, granularity); in cachefiles_query_occupancy() [all …]
|
/openbmc/linux/drivers/iio/pressure/ |
H A D | ms5611_core.c | 132 s64 off2, sens2, t2; in ms5611_temp_and_pressure_compensate() local 135 off2 = (5 * (t - 2000) * (t - 2000)) >> 1; in ms5611_temp_and_pressure_compensate() 136 sens2 = off2 >> 1; in ms5611_temp_and_pressure_compensate() 141 off2 += 7 * tmp; in ms5611_temp_and_pressure_compensate() 146 off -= off2; in ms5611_temp_and_pressure_compensate() 168 s64 off2, sens2, t2, tmp; in ms5607_temp_and_pressure_compensate() local 172 off2 = (61 * tmp) >> 4; in ms5607_temp_and_pressure_compensate() 177 off2 += 15 * tmp; in ms5607_temp_and_pressure_compensate() 182 off -= off2; in ms5607_temp_and_pressure_compensate()
|
/openbmc/linux/arch/arm64/lib/ |
H A D | strcmp.S | 39 #define off2 x10 macro 57 sub off2, src2, src1 60 tst off2, 7 67 ldr data2, [src1, off2] 112 ldr data2, [src1, off2] 154 ldr data2, [src1, off2]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 011 | 57 let off2=$off1+512 62 $QEMU_IO -c "aio_write $off1 1M" -c "aio_write $off2 1M" "$TEST_IMG" | \
|
/openbmc/linux/fs/jfs/ |
H A D | jfs_xtree.h | 22 __le32 off2; /* 4: offset in unit of fsblksize */ member 35 (xad)->off2 = __cpu_to_le32((offset64) & 0xffffffff);\ 42 ( ((s64)((xad)->off1)) << 32 | __le32_to_cpu((xad)->off2))
|
/openbmc/linux/drivers/scsi/mvsas/ |
H A D | mv_chips.h | 59 u32 off2, u32 port) in mvs_read_port() argument 62 void __iomem *regs2 = mvi->regs + off2; in mvs_read_port() 67 static inline void mvs_write_port(struct mvs_info *mvi, u32 off, u32 off2, in mvs_write_port() argument 71 void __iomem *regs2 = mvi->regs + off2; in mvs_write_port()
|
/openbmc/linux/include/linux/ |
H A D | dmaengine.h | 1219 size_t off1, size_t off2, size_t len) in dmaengine_check_align() argument 1221 return !(((1 << align) - 1) & (off1 | off2 | len)); in dmaengine_check_align() 1225 size_t off2, size_t len) in is_dma_copy_aligned() argument 1227 return dmaengine_check_align(dev->copy_align, off1, off2, len); in is_dma_copy_aligned() 1231 size_t off2, size_t len) in is_dma_xor_aligned() argument 1233 return dmaengine_check_align(dev->xor_align, off1, off2, len); in is_dma_xor_aligned() 1237 size_t off2, size_t len) in is_dma_pq_aligned() argument 1239 return dmaengine_check_align(dev->pq_align, off1, off2, len); in is_dma_pq_aligned() 1243 size_t off2, size_t len) in is_dma_fill_aligned() argument 1245 return dmaengine_check_align(dev->fill_align, off1, off2, len); in is_dma_fill_aligned()
|
/openbmc/linux/drivers/iio/common/ms_sensors/ |
H A D | ms_sensors_i2c.c | 625 s64 off, sens, t2, off2, sens2; in ms_sensors_read_temp_and_pressure() local 662 off2 = (61 * tmp * tmp) >> 4; in ms_sensors_read_temp_and_pressure() 668 off2 += 17 * tmp * tmp; in ms_sensors_read_temp_and_pressure() 673 off2 = 0; in ms_sensors_read_temp_and_pressure() 679 off -= off2; in ms_sensors_read_temp_and_pressure()
|
/openbmc/linux/fs/hfs/ |
H A D | mdb.c | 79 int off2, len, size, sect; in hfs_mdb_get() local 190 off2 = off & (sb->s_blocksize - 1); in hfs_mdb_get() 191 len = min((int)sb->s_blocksize - off2, size); in hfs_mdb_get() 192 memcpy(ptr, bh->b_data + off2, len); in hfs_mdb_get()
|
/openbmc/linux/drivers/soundwire/ |
H A D | bus.h | 172 int off1, int off2, in sdw_fill_xport_params() argument 181 params->offset2 = off2; in sdw_fill_xport_params()
|
H A D | qcom.c | 151 u8 off2; member 968 value |= pcfg->off2 << SWRM_DP_PORT_CTRL_OFFSET2_SHFT; in qcom_swrm_transport_params() 1088 p_rt->transport_params.offset2 = pcfg->off2; in qcom_swrm_compute_params() 1366 u8 off2[QCOM_SDW_MAX_PORTS]; in qcom_swrm_get_port_config() local 1414 off2, nports); in qcom_swrm_get_port_config() 1459 ctrl->pconfig[i + 1].off2 = off2[i]; in qcom_swrm_get_port_config()
|
/openbmc/qemu/tests/unit/ |
H A D | test-hbitmap.c | 928 int64_t off1, off2; in test_hbitmap_next_dirty_area_check_limited() local 940 for (off2 = offset; off2 < end && !hbitmap_get(data->hb, off2); off2++) { in test_hbitmap_next_dirty_area_check_limited() 944 for (len2 = 1; (off2 + len2 < end && len2 < max_dirty && in test_hbitmap_next_dirty_area_check_limited() 945 hbitmap_get(data->hb, off2 + len2)); len2++) in test_hbitmap_next_dirty_area_check_limited() 950 ret2 = off2 < end; in test_hbitmap_next_dirty_area_check_limited() 954 g_assert_cmpint(off1, ==, off2); in test_hbitmap_next_dirty_area_check_limited()
|
/openbmc/linux/net/sched/ |
H A D | cls_u32.c | 127 int off2 = 0; in u32_classify() local 161 int toff = off + key->off + (off2 & key->offmask); in u32_classify() 228 off2 = n->sel.off + 3; in u32_classify() 237 off2 += ntohs(n->sel.offmask & *data) >> in u32_classify() 240 off2 &= ~3; in u32_classify() 243 off += off2; in u32_classify() 244 off2 = 0; in u32_classify()
|
/openbmc/openbmc/poky/meta/recipes-devtools/valgrind/valgrind/ |
H A D | 0002-Bug-476548-valgrind-3.22.0-fails-on-assertion-when-l.patch | 60 @@ -115,6 +115,10 @@ Int ML_(img_strcmp)(DiImage* img, DiOffT off1, DiOffT off2);
|
/openbmc/u-boot/drivers/clk/ |
H A D | clk_stm32mp1.c | 467 #define STM32MP1_CLK_PLL(idx, type, off1, off2, off3, off4, off5, off6,\ argument 472 .pllxcfgr1 = (off2), \
|
/openbmc/linux/fs/btrfs/ |
H A D | send.c | 7597 unsigned long off1, off2; in tree_compare_item() local 7605 off2 = btrfs_item_ptr_offset(right_path->nodes[0], in tree_compare_item() 7610 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1); in tree_compare_item()
|
/openbmc/linux/Documentation/driver-api/usb/ |
H A D | power-management.rst | 597 http://dl.dropbox.com/u/96820575/sarah-sharp-lpt-port-power-off2-mini.pdf
|