/third_party/rust/crates/once_cell/src/ |
H A D | lib.rs | 522 if let Some(old) = self.get() { in try_insert() 523 return Err((old, value)); in try_insert() 603 // better to panic, rather than to silently use an old value. in get_or_try_init()
|
/third_party/spirv-tools/source/opt/ |
H A D | iterator.h | 202 FilterIterator old = *this; in operator ++() local 204 return old; in operator ++()
|
/third_party/ffmpeg/libavcodec/ |
H A D | atrac3.c | 468 #define INTERPOLATE(old, new, nsample) \ 469 ((old) + (nsample) * 0.125 * ((new) - (old)))
|
H A D | ffv1enc.c | 475 #define COST(old, new) \ in sort_stt() 476 s->rc_stat[old][0] * -log2((256 - (new)) / 256.0) + \ in sort_stt() 477 s->rc_stat[old][1] * -log2((new) / 256.0) in sort_stt() 479 #define COST2(old, new) \ in sort_stt() 480 COST(old, new) + COST(256 - (old), 256 - (new)) in sort_stt()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_rotate.c | 563 AVExpr *old = rot->angle_expr; in process_command() local 569 rot->angle_expr = old; in process_command() 572 av_expr_free(old); in process_command()
|
H A D | vf_phase.c | 73 enum PhaseMode (*analyze_plane)(void *ctx, enum PhaseMode mode, AVFrame *old, AVFrame *new);
|
H A D | vf_drawtext.c | 909 DrawTextContext *old = ctx->priv; in command() local 919 ret = av_opt_copy(new, old); in command() 926 ctx->priv = old; in command() 933 ctx->priv = old; in command() 939 ctx->priv = old; in command() 941 av_freep(&old); in command()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
H A D | AlphabeticIndex.java | 493 int old = -1; in initLabels() 498 if (bump == old) { in initLabels() 501 old = bump; in initLabels() 682 buckets = null; // invalidate old bucketlist in addRecord()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | AlphabeticIndex.java | 474 int old = -1; in initLabels() 479 if (bump == old) { in initLabels() 482 old = bump; in initLabels() 659 buckets = null; // invalidate old bucketlist in addRecord()
|
/third_party/python/Lib/ |
H A D | os.py | 254 def renames(old, new): 255 """renames(old, new) 261 path segments of the old name will be pruned until either the 272 rename(old, new) 273 head, tail = path.split(old) 1012 return returncode << 8 # Shift left to match old behavior
|
/third_party/libuv/src/unix/ |
H A D | stream.c | 1124 struct iovec *old; in uv__read() local 1128 old = msg.msg_iov; in uv__read() 1136 msg.msg_iov = old; in uv__read() 1140 msg.msg_iov = old; in uv__read()
|
/third_party/jinja2/ |
H A D | filters.py | 177 eval_ctx: "EvalContext", s: str, old: str, new: str, count: t.Optional[int] = None 197 return str(s).replace(str(old), str(new), count) 200 hasattr(old, "__html__") 208 return s.replace(soft_str(old), soft_str(new), count)
|
/third_party/lame/libmp3lame/ |
H A D | bitstream.c | 475 int const old = esv->h_ptr; in encodeSideInfo2() local 476 assert(esv->header[old].ptr == cfg->sideinfo_len * 8); in encodeSideInfo2() 478 esv->h_ptr = (old + 1) & (MAX_HEADER_BUF - 1); in encodeSideInfo2() 479 esv->header[esv->h_ptr].write_timing = esv->header[old].write_timing + bitsPerFrame; in encodeSideInfo2()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | compiler.h | 258 bi_replace_index(bi_index old, bi_index replacement) 260 replacement.abs = old.abs; 261 replacement.neg = old.neg; 262 replacement.swizzle = old.swizzle;
|
/third_party/node/deps/uv/src/unix/ |
H A D | stream.c | 1182 struct iovec *old; in uv__read() local 1186 old = msg.msg_iov; in uv__read() 1194 msg.msg_iov = old; in uv__read() 1198 msg.msg_iov = old; in uv__read()
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 219 # There were a variety of old schemes for setting the magic number. 612 def _wrap(new, old): 614 if hasattr(old, replace): 615 setattr(new, replace, getattr(old, replace)) 616 new.__dict__.update(old.__dict__)
|
H A D | _bootstrap.py | 40 def _wrap(new, old): 43 if hasattr(old, replace): 44 setattr(new, replace, getattr(old, replace)) 45 new.__dict__.update(old.__dict__)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-font.cc | 1766 hb_font_t *old = font->parent; in hb_font_set_parent() local 1770 hb_font_destroy (old); in hb_font_set_parent() 1808 hb_face_t *old = font->face; in hb_font_set_face() local 1814 hb_face_destroy (old); in hb_font_set_face()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | genIndexFilters.bat | 36 # old lines that were replaced.
|
/third_party/libunwind/libunwind/tests/ |
H A D | x64-test-dwarf-expressions.S | 68 # of cfa-16 (cfa points at old rsp, cfa-8 is our rip, so we stored r12 at
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | private.h | 304 char * icatalloc(char * old, const char * new);
|
/third_party/ltp/utils/benchmark/kernbench-0.42/ |
H A D | kernbench | 106 echo No old config found, using defconfig
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | private.h | 304 char * icatalloc(char * old, const char * new);
|
/third_party/mesa3d/src/microsoft/clc/ |
H A D | clc_compiler_test.cpp | 1769 "__kernel void main_test(__global int *inout, __global int *old)\n\ in TEST_F() 1771 old[get_global_id(0)] = atomic_add(inout + get_global_id(0), 3);\n\ in TEST_F() 1774 auto old = ShaderArg<int32_t>(std::vector<int32_t>(2, 0xdeadbeef), SHADER_ARG_OUTPUT); in TEST_F() local 1777 run_shader(kernel_source, inout.size(), 1, 1, inout, old); in TEST_F() 1780 EXPECT_EQ(old[i], expected_old[i]); in TEST_F() 1787 "__kernel void main_test(__global int *inout, __global int *old)\n\ in TEST_F() 1789 old[get_global_id(0)] = atomic_min(inout + get_global_id(0), 1);\n\ in TEST_F() 1792 auto old = ShaderArg<int32_t>(std::vector<int32_t>(3, 0xdeadbeef), SHADER_ARG_OUTPUT); in TEST_F() local 1795 run_shader(kernel_source, inout.size(), 1, 1, inout, old); in TEST_F() 1798 EXPECT_EQ(old[ in TEST_F() [all...] |
/third_party/python/Tools/scripts/ |
H A D | texi2html.py | 1568 [old, new] = words 1569 if old not in self.whichindex or \ 1573 if old != new and \ 1574 self.whichindex[old] is not self.whichindex[new]: 1576 inew[len(inew):] = self.whichindex[old] 1577 self.whichindex[old] = inew
|