Home
last modified time | relevance | path

Searched refs:sbit (Results 1 - 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c42 ftc_sbit_copy_bitmap( FTC_SBit sbit, in ftc_sbit_copy_bitmap() argument
56 if ( !FT_QALLOC( sbit->buffer, size ) ) in ftc_sbit_copy_bitmap()
57 FT_MEM_COPY( sbit->buffer, bitmap->buffer, size ); in ftc_sbit_copy_bitmap()
68 FTC_SBit sbit = snode->sbits; in ftc_snode_free() local
73 for ( ; count > 0; sbit++, count-- ) in ftc_snode_free()
74 FT_FREE( sbit->buffer ); in ftc_snode_free()
94 * to a bad font file), this function will mark the sbit as `unavailable'
110 FTC_SBit sbit; in ftc_snode_load() local
120 sbit = snode->sbits + ( gindex - gnode->gindex ); in ftc_snode_load()
143 /* and we will leave it as `missing' with sbit in ftc_snode_load()
290 FTC_SBit sbit = snode->sbits; FT_LOCAL_DEF() local
350 FTC_SBit sbit = snode->sbits + ( gindex - gnode->gindex ); FT_LOCAL_DEF() local
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dbits.h20 unsigned long long sbit = sign_bit(size); in sign_mask() local
21 return sbit - 1; in sign_mask()
26 unsigned long long sbit = sign_bit(size); in bits_mask() local
27 return sbit | (sbit - 1); in bits_mask()
H A Dsimplify.c1059 unsigned long long sbit = 1ULL << (insn->size - 1); in simplify_mul_div() local
1060 unsigned long long bits = sbit | (sbit - 1); in simplify_mul_div()
1071 if (!(value & sbit)) // positive in simplify_mul_div()
1525 long long sbit = 1ULL << (insn->size - 1); in simplify_constant_rightside() local
1526 long long bits = sbit | (sbit - 1); in simplify_constant_rightside()
/third_party/ffmpeg/libavformat/
H A Drtpdec_h261.c51 int sbit, ebit, gobn, mbap, quant; in h261_handle_packet() local
86 sbit = (buf[0] >> 5) & 0x07; in h261_handle_packet()
98 /* sanity check: a new frame starts with gobn=0, sbit=0, mbap=0, quant=0 */ in h261_handle_packet()
99 if (!gobn && !sbit && !mbap && !quant) { in h261_handle_packet()
112 if (rtp_h261_ctx->endbyte_bits || sbit) { in h261_handle_packet()
113 if (rtp_h261_ctx->endbyte_bits == sbit) { in h261_handle_packet()
114 rtp_h261_ctx->endbyte |= buf[0] & (0xff >> sbit); in h261_handle_packet()
120 /* ebit/sbit values inconsistent, assuming packet loss */ in h261_handle_packet()
125 skip_bits(&gb, sbit); in h261_handle_packet()
H A Drtpdec_h263_rfc2190.c54 int f, p, i, sbit, ebit, src, r; in h263_handle_packet() local
102 sbit = (buf[0] >> 3) & 0x7; in h263_handle_packet()
135 if (data->endbyte_bits || sbit) { in h263_handle_packet()
136 if (data->endbyte_bits == sbit) { in h263_handle_packet()
137 data->endbyte |= buf[0] & (0xff >> sbit); in h263_handle_packet()
148 skip_bits(&gb, sbit); in h263_handle_packet()
/third_party/skia/third_party/externals/libpng/
H A Dpngwutil.c1263 png_write_sBIT(png_structrp png_ptr, png_const_color_8p sbit, int color_type) in png_write_sBIT() argument
1278 if (sbit->red == 0 || sbit->red > maxbits || in png_write_sBIT()
1279 sbit->green == 0 || sbit->green > maxbits || in png_write_sBIT()
1280 sbit->blue == 0 || sbit->blue > maxbits) in png_write_sBIT()
1286 buf[0] = sbit->red; in png_write_sBIT()
1287 buf[1] = sbit->green; in png_write_sBIT()
1288 buf[2] = sbit in png_write_sBIT()
[all...]
H A Dpngpriv.h1160 png_const_color_8p sbit, int color_type),PNG_EMPTY);
/third_party/skia/third_party/externals/freetype/include/freetype/
H A Dftcache.h952 * A handle to the new sbit cache. `NULL` in case of error.
968 * Look up a given small glyph bitmap in a given sbit cache and 'lock' it
973 * A handle to the source sbit cache.
982 * sbit ::
1015 FTC_SBit *sbit,
1030 * A handle to the source sbit cache.
1042 * sbit ::
1076 FTC_SBit *sbit,
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngvalid.c2387 /* Lowest sbit to test (pre-1.7 libpng fails for sbit < 8) */
3425 png_byte sbit; member
3431 png_byte sbit = ((sbit_modification*)me)->sbit; in sbit_modify() local
3432 if (pm->bit_depth > sbit) in sbit_modify()
3463 (pm->buffer+8)[--cb] = sbit; in sbit_modify()
3478 sbit_modification_init(sbit_modification *me, png_modifier *pm, png_byte sbit) in sbit_modification_init() argument
3484 me->sbit = sbit; in sbit_modification_init()
9217 png_byte sbit; global() member
9234 gamma_display_init(gamma_display *dp, png_modifier *pm, png_uint_32 id, double file_gamma, double screen_gamma, png_byte sbit, int threshold_test, int use_input_precision, int scale16, int expand16, int do_background, const png_color_16 *pointer_to_the_background_color, double background_gamma) gamma_display_init() argument
9398 png_byte sbit; global() member
10609 gamma_transform_test(png_modifier *pm, png_byte colour_type, png_byte bit_depth, int palette_number, int interlace_type, const double file_gamma, const double screen_gamma, png_byte sbit, int use_input_precision, int scale16) gamma_transform_test() argument
10667 png_byte sbit; perform_gamma_sbit_tests() local
[all...]
/third_party/node/deps/v8/src/codegen/arm/
H A Dmacro-assembler-arm.h478 void Move(Register dst, const Operand& src, SBit sbit = LeaveCC, in Move()
480 if (!src.IsRegister() || src.rm() != dst || sbit != LeaveCC) { in Move()
481 mov(dst, src, sbit, cond); in Move()

Completed in 23 milliseconds