Lines Matching refs:ofs
36 long ofs; in bus_read_1() local
40 if (!PyArg_ParseTuple(args, "il", &rid, &ofs)) in bus_read_1()
42 if (!bs_read(rid, ofs, &val, sizeof(val))) { in bus_read_1()
52 long ofs; in bus_read_2() local
56 if (!PyArg_ParseTuple(args, "il", &rid, &ofs)) in bus_read_2()
58 if (!bs_read(rid, ofs, &val, sizeof(val))) { in bus_read_2()
68 long ofs; in bus_read_4() local
72 if (!PyArg_ParseTuple(args, "il", &rid, &ofs)) in bus_read_4()
74 if (!bs_read(rid, ofs, &val, sizeof(val))) { in bus_read_4()
84 long ofs; in bus_write_1() local
88 if (!PyArg_ParseTuple(args, "ilB", &rid, &ofs, &val)) in bus_write_1()
90 if (!bs_write(rid, ofs, &val, sizeof(val))) { in bus_write_1()
100 long ofs; in bus_write_2() local
104 if (!PyArg_ParseTuple(args, "ilH", &rid, &ofs, &val)) in bus_write_2()
106 if (!bs_write(rid, ofs, &val, sizeof(val))) { in bus_write_2()
116 long ofs; in bus_write_4() local
120 if (!PyArg_ParseTuple(args, "ilI", &rid, &ofs, &val)) in bus_write_4()
122 if (!bs_write(rid, ofs, &val, sizeof(val))) { in bus_write_4()
162 long ofs, sz; in bus_subregion() local
165 if (!PyArg_ParseTuple(args, "ill", &rid0, &ofs, &sz)) in bus_subregion()
167 rid = bs_subregion(rid0, ofs, sz); in bus_subregion()
400 u_long ofs, len; in busdma_sync_range() local
403 if (!PyArg_ParseTuple(args, "iikk", &mdid, &op, &ofs, &len)) in busdma_sync_range()
405 error = bd_sync(mdid, op, ofs, len); in busdma_sync_range()