/third_party/vulkan-loader/loader/ |
H A D | unknown_ext_chain_masm.asm | 23 ; creating a stack frame, because the actual parameters of the call are not known. Since the first parameter is known to be a 52 sub rsp, 56 ; Create the stack frame 60 add rsp, 56 ; Clean up the stack frame
|
/third_party/ffmpeg/libavcodec/ |
H A D | cook.c | 717 * next frame, has the wrong sign. Hence the subtraction below. in imlt_window_float() 981 static int cook_decode_frame(AVCodecContext *avctx, AVFrame *frame, in cook_decode_frame() argument 997 frame->nb_samples = q->samples_per_channel; in cook_decode_frame() 998 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in cook_decode_frame() 1000 samples = (float **)frame->extended_data; in cook_decode_frame() 1011 "frame subpacket size total > avctx->block_align!\n"); in cook_decode_frame()
|
H A D | cfhdenc.c | 423 const AVFrame *frame, int *got_packet) in cfhd_encode_frame() 440 int16_t *input = (int16_t *)frame->data[act_plane]; in cfhd_encode_frame() 443 ptrdiff_t in_stride = frame->linesize[act_plane] / 2; in cfhd_encode_frame() 596 bytestream2_put_be16(pby, frame->pts & 0xFFFF); in cfhd_encode_frame() 422 cfhd_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) cfhd_encode_frame() argument
|
H A D | vorbisenc.c | 1064 /* Copy samples from last frame into current frame */ in move_audio() 1083 memcpy(save + sf*sf_size, input, len); // Move samples for next frame in move_audio() 1092 const AVFrame *frame, int *got_packet_ptr) in vorbis_encode_frame() 1101 if (frame) { in vorbis_encode_frame() 1103 if ((ret = ff_af_queue_add(&venc->afq, frame)) < 0) in vorbis_encode_frame() 1105 clone = av_frame_clone(frame); in vorbis_encode_frame() 1114 need_more = frame && need_more; in vorbis_encode_frame() 1119 if (!frame) { in vorbis_encode_frame() 1146 put_bits(&pb, ilog(venc->nmodes - 1), 1); // Mode for current frame in vorbis_encode_frame() 1091 vorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) vorbis_encode_frame() argument [all...] |
H A D | dxva2_internal.h | 140 const AVFrame *frame);
|
H A D | aac.h | 120 OC_TRIAL_FRAME, ///< Output configuration under trial specified by a frame header 302 AVFrame *frame; member 304 int is_saved; ///< Set if elements have stored overlap from previous frame.
|
H A D | vaapi_encode.h | 191 // Desired B frame reference depth. 252 // The hardware frame context containing the input frames. 256 // The hardware frame context containing the reconstructed frames. 352 // encounter a frame with ROI side data. 355 AVFrame *frame; member 361 // Max number of frame buffered in encoder. 478 "Maximum B-frame reference depth", \ 487 "Maximum frame size (in bytes)",\
|
H A D | mpegvideoenc.h | 106 {"brd_scale", "Downscale frames for dynamic B-frame decision", FF_MPV_OFFSET(brd_scale), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, 3, FF_MPV_OPT_FLAGS }, 124 const AVFrame *frame, int *got_packet);
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_scale.c | 211 av_log(ctx, AV_LOG_ERROR, "Expressions with frame variables 'n', 't', 'pos' are not valid in init eval_mode.\n"); in check_exprs() 627 static void frame_offset(AVFrame *frame, int dir, int is_pal) in frame_offset() argument 629 for (int i = 0; i < 4 && frame->data[i]; i++) { in frame_offset() 632 frame->data[i] += frame->linesize[i] * dir; in frame_offset() 976 { "frame", "eval expressions during initialization and per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
|
/third_party/backends/backend/ |
H A D | v4l.c | 584 DBG (5, "sane_open: V4L device can overlay its image onto the frame " in sane_open() 591 DBG (5, "sane_open: V4L device overwrites frame buffer memory\n"); in sane_open() 991 DBG (3, "sane_start: V4L trying to read frame\n"); in sane_start() 1000 "sane_start: mmap frame, buffersize: %d bytes, buffers: %d, offset 0 %d\n", in sane_start() 1010 DBG (3, "sane_start: mmapped frame, capture 1 pict into %p\n", (void *) buffer); in sane_start() 1011 s->mmap.frame = 0; in sane_start() 1017 DBG (2, "sane_start: mmapped frame %d x %d with palette %d\n", in sane_start() 1031 DBG (3, "sane_start: waiting for frame %x, loop %d\n", s->mmap.frame, loop); in sane_start() 1032 len = v4l1_ioctl (s->fd, VIDIOCSYNC, &(s->mmap.frame)); in sane_start() [all...] |
H A D | pieusb_specific.h | 284 struct Pieusb_Scan_Frame frame; member
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_static.h | 258 ITT_STUBV(ITTAPI, void, frame_begin, (__itt_frame frame), (ITT_FORMAT frame), frame_begin, __itt_group_frame, "%p") 259 ITT_STUBV(ITTAPI, void, frame_end, (__itt_frame frame), (ITT_FORMAT frame), frame_end, __itt_group_frame, "%p")
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | DepthStencilFormatsTest.cpp | 763 // This test will initialize a frame buffer, attaching a color and 16-bit depth buffer, 770 // This test will initialize a frame buffer, attaching a color and 24-bit depth buffer, 1228 for (unsigned int frame = 0; frame < 3; ++frame) in TEST_P() 1236 float depth = ((frame % 2 == 0) ? 0.0f : 1.0f); in TEST_P()
|
/third_party/python/Python/ |
H A D | errors.c | 1506 PyFrameObject *frame = PyThreadState_GetFrame(tstate); in _PyErr_WriteUnraisableMsg() local 1507 if (frame != NULL) { in _PyErr_WriteUnraisableMsg() 1508 exc_tb = _PyTraceBack_FromFrame(NULL, frame); in _PyErr_WriteUnraisableMsg() 1512 Py_DECREF(frame); in _PyErr_WriteUnraisableMsg()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | wpa_supplicant_i.h | 411 * offchannel_send_action_result - Result of offchannel send Action frame 1303 /* WLAN_STATUS_* status codes from last received Authentication frame 1307 /* WLAN_STATUS_* status codes from (Re)Association Response frame. */ 1737 const u8 *frame, size_t len); 1740 const u8 *frame, size_t len, 1894 enum wpa_vendor_elem_frame frame); 1895 int wpas_vendor_elem_remove(struct wpa_supplicant *wpa_s, int frame,
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | radeon_uvd.c | 345 // aligned size of a single frame in calc_dpb_size() 843 /* extract the frame number from a referenced video buffer */ 848 uintptr_t frame; in get_ref_pic_idx() local 854 /* get the frame number from the associated data */ in get_ref_pic_idx() 855 frame = (uintptr_t)vl_video_buffer_get_associated_data(ref, &dec->base); in get_ref_pic_idx() 857 /* limit the frame number to a valid range */ in get_ref_pic_idx() 858 return MAX2(MIN2(frame, max), min); in get_ref_pic_idx() 1001 * start decoding of a new frame 1007 uintptr_t frame; in ruvd_begin_frame() local 1011 frame in ruvd_begin_frame() [all...] |
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | keccak1600-c64x.pl | 59 # Stack frame layout 407 STW FP,*SP--(80) ; save frame pointer 544 LDW *++SP(80),FP ; restore frame pointer 556 STW FP,*SP--(80) ; save frame pointer 740 || LDW *++SP(80),FP ; restore frame pointer 762 STW FP,*SP--(24) ; save frame pointer 841 LDW *++SP(24),FP ; restore frame pointer
|
/third_party/openssl/crypto/sha/asm/ |
H A D | keccak1600-c64x.pl | 59 # Stack frame layout 407 STW FP,*SP--(80) ; save frame pointer 544 LDW *++SP(80),FP ; restore frame pointer 556 STW FP,*SP--(80) ; save frame pointer 740 || LDW *++SP(80),FP ; restore frame pointer 762 STW FP,*SP--(24) ; save frame pointer 841 LDW *++SP(24),FP ; restore frame pointer
|
/third_party/ffmpeg/tests/fate/ |
H A D | cbs.mak | 122 vp90-2-10-show-existing-frame.webm \
|
/third_party/libunwind/libunwind/include/tdep-tilegx/ |
H A D | libunwind_i.h | 213 #define tdep_reuse_frame(c,frame) do {} while(0)
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
H A D | enums2names.py | 67 def pkk_signal_handler(signal, frame):
|
/third_party/python/Lib/idlelib/ |
H A D | browser.py | 127 sc.frame.pack(expand=1, fill="both")
|
/third_party/vixl/tools/ |
H A D | lint.py | 46 def sigint_handler(signal, frame):
|
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/crypto/aes/ |
H A D | aes-mips.S | 11 .frame $29,0,$31 517 .frame $29,128,$31 587 .frame $29,0,$31 1089 .frame $29,128,$31 1159 .frame $29,0,$31 1429 .frame $29,64,$31 1453 .frame $29,64,$31
|
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/aes/ |
H A D | aes-mips.S | 11 .frame $29,0,$31 517 .frame $29,128,$31 587 .frame $29,0,$31 1089 .frame $29,128,$31 1159 .frame $29,0,$31 1429 .frame $29,64,$31 1453 .frame $29,64,$31
|