Home
last modified time | relevance | path

Searched refs:last_type (Results 1 – 25 of 27) sorted by relevance

12

/third_party/ffmpeg/libavfilter/
Dvf_idet.c179 if(idet->last_type == UNDETERMINED){ in filter()
180 if(match ) idet->last_type = best_type; in filter()
182 if(match>2) idet->last_type = best_type; in filter()
185 if (idet->last_type == TFF){ in filter()
188 }else if(idet->last_type == BFF){ in filter()
191 }else if(idet->last_type == PROGRESSIVE){ in filter()
209 idet->total_poststat[idet->last_type] ++; in filter()
210 idet->poststat [idet->last_type] += PRECISION; in filter()
213 rep2str(repeat), type2str(type), type2str(idet->last_type)); in filter()
226 av_dict_set (metadata, "lavfi.idet.multiple.current_frame", type2str(idet->last_type), 0); in filter()
[all …]
Dvf_idet.h50 Type last_type; member
/third_party/openssl/test/
Dpbelutest.c21 int pbe_type, pbe_nid, last_type = -1, last_nid = -1; in test_pbelu() local
36 failed = pbe_type < last_type in test_pbelu()
37 || (pbe_type == last_type && pbe_nid < last_nid); in test_pbelu()
40 last_type = pbe_type; in test_pbelu()
/third_party/python/Lib/idlelib/idle_test/
Dtest_stackviewer.py20 svs.last_type, svs.last_value, svs.last_traceback = (
30 del svs.last_traceback, svs.last_type, svs.last_value
/third_party/python/Lib/idlelib/
Dstackviewer.py40 type = sys.last_type
139 sys.last_type = exc_type
146 del sys.last_type
Drun.py241 sys.last_type, sys.last_value, sys.last_traceback = excinfo
634 sys.last_type = typ
/third_party/python/Lib/
Dcode.py109 sys.last_type = type
139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
Dtraceback.py190 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
/third_party/libcoap/include/coap3/
Dcoap_block_internal.h156 uint8_t last_type; /**< Last request type (CON/NON) */ member
186 uint8_t last_type; /**< Last request type (CON/NON) */ member
/third_party/ffmpeg/libavcodec/
Dmss3.c78 int last_type; member
436 bt->last_type = rac_get_model_sym(c, &bt->bt_model[bt->last_type]); in decode_block_type()
438 return bt->last_type; in decode_block_type()
635 ctx->btype[i].last_type = SKIP_BLOCK; in reset_coders()
/third_party/mesa3d/src/compiler/nir/
Dnir_serialize.c56 const struct glsl_type *last_type; member
87 const struct glsl_type *last_type; member
246 flags.u.type_same_as_last = var->type == ctx->last_type; in write_variable()
294 ctx->last_type = var->type; in write_variable()
350 var->type = ctx->last_type; in read_variable()
353 ctx->last_type = var->type; in read_variable()
1032 header.deref.cast_type_same_as_last = deref->type == ctx->last_type; in write_deref()
1084 ctx->last_type = deref->type; in write_deref()
1151 deref->type = ctx->last_type; in read_deref()
1154 ctx->last_type = deref->type; in read_deref()
/third_party/python/Modules/
D_lsprof.c347 PyObject *last_type, *last_value, *last_tb; in ptrace_enter_call() local
348 PyErr_Fetch(&last_type, &last_value, &last_tb); in ptrace_enter_call()
373 PyErr_Restore(last_type, last_value, last_tb); in ptrace_enter_call()
/third_party/node/deps/brotli/c/enc/
Dbrotli_bit_stream.c52 size_t last_type; member
57 self->last_type = 1; in InitBlockTypeCodeCalculator()
63 size_t type_code = (type == calculator->last_type + 1) ? 1u : in NextBlockTypeCode()
65 calculator->second_last_type = calculator->last_type; in NextBlockTypeCode()
66 calculator->last_type = type; in NextBlockTypeCode()
/third_party/skia/third_party/externals/brotli/c/enc/
Dbrotli_bit_stream.c52 size_t last_type; member
57 self->last_type = 1; in InitBlockTypeCodeCalculator()
63 size_t type_code = (type == calculator->last_type + 1) ? 1u : in NextBlockTypeCode()
65 calculator->second_last_type = calculator->last_type; in NextBlockTypeCode()
66 calculator->last_type = type; in NextBlockTypeCode()
/third_party/python/Lib/tkinter/test/test_ttk/
Dtest_extensions.py49 self.assertNotEqual(sys.last_type, tkinter.TclError)
/third_party/python/Doc/library/
Dtraceback.rst83 This is a shorthand for ``print_exception(sys.last_type, sys.last_value,
86 :data:`sys.last_type`).
Dsys.rst1031 .. data:: last_type
/third_party/libcoap/src/
Dcoap_block.c1200 pdu->type = p->last_type; in coap_build_missing_pdu()
1326 if (COAP_PROTO_RELIABLE(session->proto) || p->last_type != COAP_MESSAGE_NON) in coap_block_check_lg_crcv_timeouts()
1516 if (COAP_PROTO_RELIABLE(session->proto) || p->last_type != COAP_MESSAGE_NON) in coap_block_check_lg_srcv_timeouts()
2719 p->last_type = pdu->type; in coap_handle_request_put_block()
3452 p->last_type = rcvd->type; in coap_handle_response_get_block()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_cross.cpp1744 auto &last_type = get<SPIRType>(type.member_types.back()); in get_declared_struct_size_runtime_array() local
1745 …if (!last_type.array.empty() && last_type.array_size_literal[0] && last_type.array[0] == 0) // Run… in get_declared_struct_size_runtime_array()
/third_party/python/Python/
Dpythonrun.c43 _Py_IDENTIFIER(last_type);
/third_party/python/Doc/tutorial/
Dmodules.rst324 'intern', 'is_finalizing', 'last_traceback', 'last_type', 'last_value',
/third_party/python/Doc/c-api/
Dexceptions.rst63 If *set_sys_last_vars* is nonzero, the variables :data:`sys.last_type`,
/third_party/python/Doc/whatsnew/
D3.0.rst633 :data:`sys.exc_traceback`. (Note that :data:`sys.last_type`
/third_party/python/Lib/tkinter/
D__init__.py2376 sys.last_type = exc
/third_party/python/Tools/c-analyzer/
DTODO571 Python/pythonrun.c:PyId_last_type _Py_IDENTIFIER(last_type)

12