/third_party/python/Lib/lib2to3/tests/ |
H A D | test_refactor.py | 304 old, new = self.refactor_file(fn) 305 self.assertIn(b"\r\n", old)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | str_split_internal.h | 104 // depend on this old behavior/bug. Perhaps it will be fixed one day. The in SplitIterator() 142 SplitIterator old(*this); in operator ++() 144 return old; in operator ++() 404 // Use piecewise_construct to support old versions of gcc in which pair in InsertOrEmplace()
|
/third_party/skia/include/private/ |
H A D | SkTHash.h | 199 Iter old = *this; in operator ++() local 201 return old; in operator ++()
|
/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);
|
/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/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/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()
|