Home
last modified time | relevance | path

Searched refs:frame (Results 1276 - 1300 of 1514) sorted by relevance

1...<<5152535455565758596061

/third_party/ffmpeg/tests/fate/
H A Dimage.mak98 # The following sample has frames whose dimensions differ on a per-frame basis
104 fate-dpx-probe: CMD = probeframes -show_entries frame=color_transfer,color_range,color_space,color_primaries,sample_aspect_ratio $(TARGET_SAMPLES)/dpx/cyan.dpx
384 FATE_PNG_PROBE += fate-png-frame-metadata
385 fate-png-frame-metadata: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries frame_tags \
H A Dvpx.mak122 $(eval $(call FATE_VP9_SUITE,10-show-existing-frame))
/third_party/ffmpeg/libavutil/
H A Dvulkan.c482 av_log(s, AV_LOG_ERROR, "Failed to queue frame fence: %s\n", in ff_vk_start_exec_recording()
509 int ff_vk_add_exec_dep(FFVulkanContext *s, FFVkExecContext *e, AVFrame *frame, in ff_vk_add_exec_dep() argument
513 AVVkFrame *f = (AVVkFrame *)frame->data[0]; in ff_vk_add_exec_dep()
515 AVHWFramesContext *fc = (AVHWFramesContext *)frame->hw_frames_ctx->data; in ff_vk_add_exec_dep()
580 q->frame_deps[q->nb_frame_deps] = av_frame_clone(frame); in ff_vk_add_exec_dep()
1305 /* Free frame dependencies */ in free_exec_ctx()
/third_party/python/Lib/
H A Ddoctest.py203 the stack frame at the given depth in the call stack.
368 def set_trace(self, frame=None):
370 if frame is None:
371 frame = sys._getframe().f_back
372 pdb.Pdb.set_trace(self, frame)
/third_party/python/Lib/test/
H A Dtest_sys.py382 # which will add a copy of any locals to the frame object, causing
443 # Verify that the captured main-thread frame is _this_ frame.
444 frame = d.pop(main_id)
445 self.assertTrue(frame is sys._getframe())
447 # Verify that the captured thread frame is blocked in g456, called
450 frame = d.pop(thread_id)
451 stack = traceback.extract_stack(frame)
515 # Verify that the captured thread frame is blocked in g456, called
1422 # frame
[all...]
/third_party/python/Lib/idlelib/
H A Dconfigdialog.py100 frame: encloses all other widgets
114 self.frame = frame = Frame(self, padding="5px")
115 self.frame.grid(sticky="nwes")
116 self.note = note = Notebook(frame)
135 """Return frame of action buttons for dialog.
158 outer = Frame(self.frame, padding=2)
297 """Return frame of widgets for Font tab.
469 """Return frame of widgets for Highlights tab.
493 Function set_color_sample() sets the background color for the frame
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvp3.c418 * frame.
458 * This function initializes the loop filter boundary limits if the frame's
459 * quality index is different from the previous frame's.
627 /* not coded; copy this fragment from the prior frame */ in unpack_superblocks()
807 /* fetch the mode coding scheme for this frame */ in unpack_modes()
1639 * the frame. Much of this function is adapted directly from the original
1695 * have a frame number of 0. That means INTRA blocks can only predict in reverse_dc_prediction()
1696 * from other INTRA blocks. There are 2 golden frame coding types; in reverse_dc_prediction()
1712 /* there is a last DC predictor for each of the 3 frame types */ in reverse_dc_prediction()
1834 * in this frame (i in apply_loop_filter()
2591 vp3_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) vp3_decode_frame() argument
[all...]
H A Dcbs_vp9_syntax_template.c393 static int FUNC(frame)(CodedBitstreamContext *ctx, RWContext *rw, in frame() function
H A Dcbs_av1.h399 AV1RawFrame frame; member
H A Dh264_sei.c105 tc->frame = get_bits(&gb, 8); /* n_frames */ in ff_h264_sei_process_picture_timing()
361 skip_bits(gb, 16); // frame[01]_grid_position_[xy] in decode_frame_packing_arrangement()
/third_party/node/deps/v8/src/ic/
H A Dic.cc148 JavaScriptFrame* frame = it.frame(); in TraceIC() local
151 JSFunction function = frame->function(); in TraceIC()
161 code_offset = InterpretedFrame::GetBytecodeOffset(frame->fp()); in TraceIC()
164 BaselineFrame* baseline_frame = BaselineFrame::cast(frame); in TraceIC()
168 code_offset = static_cast<int>(frame->pc() - function.code_entry_point()); in TraceIC()
/third_party/libunwind/libunwind/doc/
H A Dunw_get_proc_info.tex20 information about the procedure that created the stack frame
/third_party/libunwind/libunwind/include/tdep-ppc64/
H A Dlibunwind_i.h74 PPC_SCF_NONE, /* no signal frame encountered */
320 #define tdep_reuse_frame(c,frame) do {} while(0)
/third_party/libunwind/libunwind/include/tdep-mips/
H A Dlibunwind_i.h298 #define tdep_reuse_frame(c,frame) do {} while(0)
/third_party/lame/mpglib/
H A Dinterface.c301 * for a frame valid header. in sync_buffer()
332 struct frame *fr = &mp->fr; in sync_buffer()
382 /* start looking for next frame */ in decode_reset()
402 return 0; /* For Layer 1 & 2 the audio data starts at the frame that describes it, so no audio data precedes. */ in audiodata_precedesframes()
448 * frame, but otherwise dont decode Xing header */ in decodeMP3_clipchoice()
474 * frame has nonzero main_data_begin, but we need in decodeMP3_clipchoice()
550 /* bits = actual number of bits needed to parse this frame */ in decodeMP3_clipchoice()
570 "hip: %d bits needed to parse layer III frame, number of bytes to read before decoding dsize = %d\n", in decodeMP3_clipchoice()
574 /* this will force mpglib to read entire frame before decoding */ in decodeMP3_clipchoice()
635 /* remaining bits are ancillary data, or reservoir for next frame in decodeMP3_clipchoice()
[all...]
/third_party/musl/scripts/build_lite/
H A DMakefile227 musl_install_for_linux_user: CFLAGS += -fno-omit-frame-pointer -funwind-tables -fasynchronous-unwind-tables -rdynamic -D__HISPARK_LINUX__ -I $(LINUXHDRDIR) -I $(LIBCXXDIR)
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.h103 UnoptimizedFrame* frame, ConcurrencyMode mode);
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-interpreter-frame-state.h16 #include "src/maglev/maglev-register-frame-array.h"
69 const RegisterFrameArray<ValueNode*>& frame() const { return frame_; } in frame() function in v8::internal::maglev::InterpreterFrameState
353 // Move the collected phis to the live interpreter frame. in SetPhis()
406 // frame will null values for anything that isn't a loop Phi. in MergeValue()
435 // frame slot. Now that we find a distinct value, insert a copy of the first in MergeValue()
439 // the frame slot. In that case we only need the inputs for representation in MergeValue()
/third_party/mesa3d/src/gallium/tools/trace/
H A Dpytracediff.py75 def pkk_signal_handler(signal, frame):
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
H A Dmips-mont.pl157 .frame $fp,$FRAMESIZE*$SZREG,$ra
H A Dalpha-mont.pl77 .frame fp,48,ra
H A Dx86_64-gf2m.pl312 # EXCEPTION_DISPOSITION handler (EXCEPTION_RECORD *rec,ULONG64 frame,
316 $frame="%rdx";
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha1-alpha.pl260 .frame sp,64,ra
H A Dsha1-ppc.pl248 addi r20,$sp,$LOCALS ; spot within the frame
/third_party/python/Lib/asyncio/
H A Devents.py54 frame = self._source_traceback[-1]
55 info.append(f'created at {frame[0]}:{frame[1]}')

Completed in 33 milliseconds

1...<<5152535455565758596061