/third_party/ffmpeg/libavformat/ |
H A D | bfi.c | 24 * @brief Brute Force & Ignorance (.bfi) file demuxer 54 BFIContext *bfi = s->priv_data; in bfi_read_header() local 76 bfi->nframes = avio_rl32(pb); in bfi_read_header() 77 if (bfi->nframes < 0) in bfi_read_header() 105 vstream->duration = bfi->nframes; in bfi_read_header() 122 BFIContext *bfi = s->priv_data; in bfi_read_packet() local 125 if (bfi->nframes == 0 || avio_feof(pb)) { in bfi_read_packet() 130 if (!bfi->avflag) { in bfi_read_packet() 148 bfi->video_size = chunk_size - video_offset; in bfi_read_packet() 155 pkt->pts = bfi in bfi_read_packet() [all...] |
H A D | Makefile | 140 OBJS-$(CONFIG_BFI_DEMUXER) += bfi.o
|
/third_party/ffmpeg/libavcodec/ |
H A D | bfi.c | 24 * @brief Brute Force & Ignorance (.bfi) video decoder 43 BFIContext *bfi = avctx->priv_data; in bfi_decode_init() local 45 bfi->dst = av_mallocz(avctx->width * avctx->height); in bfi_decode_init() 46 if (!bfi->dst) in bfi_decode_init() 56 BFIContext *bfi = avctx->priv_data; in bfi_decode_frame() local 57 uint8_t *dst = bfi->dst; in bfi_decode_frame() 59 uint8_t *frame_end = bfi->dst + avctx->width * avctx->height; in bfi_decode_frame() 86 memcpy(bfi->pal, frame->data[1], sizeof(bfi->pal)); in bfi_decode_frame() 92 memcpy(frame->data[1], bfi in bfi_decode_frame() 173 BFIContext *bfi = avctx->priv_data; bfi_decode_close() local [all...] |
H A D | Makefile | 253 OBJS-$(CONFIG_BFI_DECODER) += bfi.o
|
/third_party/ffmpeg/libswscale/aarch64/ |
H A D | rgb2rgb_neon.S | 65 bfi w9, w10, #8, #8
|
/third_party/ffmpeg/tests/fate/ |
H A D | video.mak | 56 FATE_VIDEO-$(call FRAMECRC, BFI, BFI, ARESAMPLE_FILTER SCALE_FILTER) += fate-bfi 57 fate-bfi: CMD = framecrc -i $(TARGET_SAMPLES)/bfi/2287.bfi -pix_fmt rgb24 -vf scale -af aresample
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_instructions.cpp | 432 ir_expression *bfi = bitfield_insert( in dldexp_to_arith() local 438 i.insert_before(assign(unpacked, bfi, WRITEMASK_Y)); in dldexp_to_arith()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64-inl.h | 302 bfi(rd, rn, lsb, width); in Bfi()
|
H A D | assembler-arm64.h | 603 void bfi(const Register& rd, const Register& rn, int lsb, int width) { in bfi() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm.h | 567 void bfi(Register dst, Register src, int lsb, int width, Condition cond = al);
|
H A D | assembler-arm.cc | 1889 // bfi dst, src, #lsb, #width 1890 void Assembler::bfi(Register dst, Register src, int lsb, int width, in bfi() function in v8::internal::Assembler
|
/third_party/vixl/src/aarch32/ |
H A D | assembler-aarch32.h | 2068 void bfi( 2070 void bfi(Register rd, Register rn, uint32_t lsb, uint32_t width) { in bfi() function in vixl::aarch32::Assembler 2071 bfi(al, rd, rn, lsb, width); in bfi()
|
H A D | disasm-aarch32.h | 686 void bfi(
|
H A D | assembler-aarch32.cc | 3221 void Assembler::bfi( in bfi() function in vixl::aarch32::Assembler 3247 Delegate(kBfi, &Assembler::bfi, cond, rd, rn, lsb, width); in bfi()
|
H A D | disasm-aarch32.cc | 1288 void Disassembler::bfi( in bfi() function in vixl::aarch32::Disassembler 9377 bfi(CurrentCond(), in DecodeT32() [all...] |
H A D | macro-assembler-aarch32.h | 1517 bfi(cond, rd, rn, lsb, width); in MacroAssembler()
|
/third_party/vixl/src/aarch64/ |
H A D | assembler-aarch64.h | 783 void bfi(const Register& rd, in bfi() function in vixl::aarch64::Assembler 807 bfi(rd, AppropriateZeroRegFor(rd), lsb, width); in bfc()
|
H A D | macro-assembler-aarch64.h | 1194 bfi(rd, rn, lsb, width); in Bfi()
|
/third_party/vixl/test/aarch64/ |
H A D | test-disasm-aarch64.cc | 554 COMPARE(bfi(w9, w10, 5, 16), "bfi w9, w10, #5, #16"); in TEST() 555 COMPARE(bfi(x11, x12, 6, 15), "bfi x11, x12, #6, #15"); in TEST()
|
H A D | test-cpu-features-aarch64.cc | 196 TEST_NONE(bfi_0, bfi(w0, w1, 5, 11)) 197 TEST_NONE(bfi_1, bfi(x0, x1, 25, 36))
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 2754 Temp bfi = 2759 bld.pseudo(aco_opcode::p_create_vector, bld.def(v2), Operand::zero(), bfi)); 2762 bld.pseudo(aco_opcode::p_create_vector, bld.def(v2), Operand::zero(), bfi));
|