/third_party/ffmpeg/libavfilter/ |
D | vf_idet.c | 179 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 …]
|
D | vf_idet.h | 50 Type last_type; member
|
/third_party/openssl/test/ |
D | pbelutest.c | 21 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/ |
D | test_stackviewer.py | 20 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/ |
D | stackviewer.py | 40 type = sys.last_type 139 sys.last_type = exc_type 146 del sys.last_type
|
D | run.py | 241 sys.last_type, sys.last_value, sys.last_traceback = excinfo 634 sys.last_type = typ
|
/third_party/python/Lib/ |
D | code.py | 109 sys.last_type = type 139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
|
D | traceback.py | 190 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
|
/third_party/libcoap/include/coap3/ |
D | coap_block_internal.h | 156 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/ |
D | mss3.c | 78 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/ |
D | nir_serialize.c | 56 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.c | 347 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/ |
D | brotli_bit_stream.c | 52 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/ |
D | brotli_bit_stream.c | 52 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/ |
D | test_extensions.py | 49 self.assertNotEqual(sys.last_type, tkinter.TclError)
|
/third_party/python/Doc/library/ |
D | traceback.rst | 83 This is a shorthand for ``print_exception(sys.last_type, sys.last_value, 86 :data:`sys.last_type`).
|
D | sys.rst | 1031 .. data:: last_type
|
/third_party/libcoap/src/ |
D | coap_block.c | 1200 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/ |
D | spirv_cross.cpp | 1744 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/ |
D | pythonrun.c | 43 _Py_IDENTIFIER(last_type);
|
/third_party/python/Doc/tutorial/ |
D | modules.rst | 324 'intern', 'is_finalizing', 'last_traceback', 'last_type', 'last_value',
|
/third_party/python/Doc/c-api/ |
D | exceptions.rst | 63 If *set_sys_last_vars* is nonzero, the variables :data:`sys.last_type`,
|
/third_party/python/Doc/whatsnew/ |
D | 3.0.rst | 633 :data:`sys.exc_traceback`. (Note that :data:`sys.last_type`
|
/third_party/python/Lib/tkinter/ |
D | __init__.py | 2376 sys.last_type = exc
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 571 Python/pythonrun.c:PyId_last_type _Py_IDENTIFIER(last_type)
|