Home
last modified time | relevance | path

Searched refs:ofst (Results 1 – 5 of 5) sorted by relevance

/third_party/uboot/u-boot-2020.01/arch/arm/mach-uniphier/dram/
Dcmd_ddrphy.c203 { int ofst = PHY_ ## x; void __iomem *reg = phy_base + ofst; \
205 ofst >> PHY_REG_SHIFT, #x, \
209 { int ofst = PHY_DX_BASE + PHY_DX_STRIDE * (dx) + \
211 void __iomem *reg = phy_base + ofst; \
213 ofst >> PHY_REG_SHIFT, (dx), #x, \
Dcmd_ddrmphy.c229 { int ofst = MPHY_ ## x; void __iomem *reg = phy_base + ofst; \
231 ofst >> MPHY_SHIFT, #x, reg, readl(reg)); }
234 { int ofst = MPHY_DX_BASE + MPHY_DX_STRIDE * (dx) + \
236 void __iomem *reg = phy_base + ofst; \
238 ofst >> MPHY_SHIFT, (dx), #x, reg, readl(reg)); }
/third_party/uboot/u-boot-2020.01/board/synopsys/hsdk/
Dhsdk.c667 int ret, ofst; in board_prep_linux() local
698 ofst = fdt_path_offset(images->ft_addr, "/"); in board_prep_linux()
704 ret = fdt_setprop_string(images->ft_addr, ofst, "possible-cpus", mask); in board_prep_linux()
/third_party/sqlite/src/
Dsqlite3.c38525 int ofst, /* First byte of the locking range */
38548 f.l_start = ofst;
38564 mask = ofst>31 ? 0xffff : (1<<(ofst+n)) - (1<<ofst);
38567 OSTRACE(("unlock %d ok", ofst));
38571 OSTRACE(("read-lock %d ok", ofst));
38576 OSTRACE(("write-lock %d ok", ofst));
38582 OSTRACE(("unlock %d failed", ofst));
38587 OSTRACE(("write-lock %d failed", ofst));
39063 int ofst, /* First lock to acquire or release */
39076 assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK );
[all …]
Dshell.c16347 static const struct { const char *zName; int ofst; } aField[] = { in shell_dbinfo_command() member
16407 int ofst = aField[i].ofst; in shell_dbinfo_command() local
16408 unsigned int val = get4byteInt(aHdr + ofst); in shell_dbinfo_command()
16410 switch( ofst ){ in shell_dbinfo_command()