Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/drivers/bios_emulator/include/x86emu/
H A Dregs.h147 #define R_SP spc.SP.I16_reg.x_reg
148 #define R_BP spc.BP.I16_reg.x_reg
149 #define R_SI spc.SI.I16_reg.x_reg
150 #define R_DI spc.DI.I16_reg.x_reg
151 #define R_IP spc.IP.I16_reg.x_reg
152 #define R_FLG spc.FLAGS
155 #define R_SP spc.SP.I16_reg.x_reg
156 #define R_BP spc.BP.I16_reg.x_reg
157 #define R_SI spc.SI.I16_reg.x_reg
158 #define R_DI spc.DI.I16_reg.x_reg
[all …]
/rk3399_rockchip-uboot/drivers/video/
H A Dstb_truetype.h521 STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int width, int heigh…
532 STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc);
537 STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, unsigned char *fontdata, int font_index…
562 STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, unsigned char *fontdata, int font_inde…
568 STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsign…
590 STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, stbtt_fontinfo *info, stbtt…
591 STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_re…
592 STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, stbtt_fontinfo *info, s…
2663 STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int s… in stbtt_PackBegin() argument
2675 spc->user_allocator_context = alloc_context; in stbtt_PackBegin()
[all …]
/rk3399_rockchip-uboot/fs/ubifs/
H A Dlprops.c473 int ubifs_calc_dark(const struct ubifs_info *c, int spc) in ubifs_calc_dark() argument
475 ubifs_assert(!(spc & 7)); in ubifs_calc_dark()
477 if (spc < c->dark_wm) in ubifs_calc_dark()
478 return spc; in ubifs_calc_dark()
485 if (spc - c->dark_wm < MIN_WRITE_SZ) in ubifs_calc_dark()
486 return spc - MIN_WRITE_SZ; in ubifs_calc_dark()
1223 int spc = free + dirty; in scan_check_cb() local
1225 if (spc < c->dead_wm) in scan_check_cb()
1226 lst->total_dead += spc; in scan_check_cb()
1228 lst->total_dark += ubifs_calc_dark(c, spc); in scan_check_cb()
H A Ddebug.c655 int i, spc, dark = 0, dead = 0; in ubifs_dump_lprop() local
659 spc = lp->free + lp->dirty; in ubifs_dump_lprop()
660 if (spc < c->dead_wm) in ubifs_dump_lprop()
661 dead = spc; in ubifs_dump_lprop()
663 dark = ubifs_calc_dark(c, spc); in ubifs_dump_lprop()
667 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
671 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
672 dark, dead, (int)(spc / UBIFS_MAX_NODE_SZ), lp->flags); in ubifs_dump_lprop()
H A Dubifs.h2347 int ubifs_calc_dark(const struct ubifs_info *c, int spc);