HomeSort by relevance Sort by last modified time
    Searched refs:old (Results 476 - 500 of 1113) sorted by null

<<11121314151617181920>>

  /external/harfbuzz_ng/src/
hb-atomic.hh 291 bool cmpexch (const T *old, T *new_) const { return hb_atomic_ptr_impl_cmpexch ((void **) &v, (void *) old, (void *) new_); }
  /external/icu/icu4c/source/config/
icu-config-bottom 283 echo ${ME}: ERROR: the old layout engine has been removed. use HarfBuzz.
  /external/libchrome/third_party/jinja2/
debug.py 352 old = _Traceback.from_address(id(tb.tb_next))
353 old.ob_refcnt -= 1
  /external/libevent/
signal.c 278 evsig_add(struct event_base *base, evutil_socket_t evsignal, short old, short events, void *p)
361 evsig_del(struct event_base *base, evutil_socket_t evsignal, short old, short events, void *p)
  /external/libxml2/doc/examples/
index.py 278 old = open("Makefile.am", "r").read()
279 if old != Makefile:
294 # old = open(".cvsignore", "r").read()
295 # if old != ignore:
  /external/lua/src/
llex.c 152 int old = ls->current; local
155 if (currIsNewline(ls) && ls->current != old)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_screen.c 591 struct lp_fence **old = (struct lp_fence **) ptr; local
594 lp_fence_reference(old, f);
  /external/python/cpython2/Lib/lib2to3/
main.py 108 def print_output(self, old, new, filename, equal):
114 diff_lines = diff_texts(old, new, filename)
  /external/python/cpython2/Lib/test/
test_difflib.py 205 old = [(i%2 and "K:%d" or "V:A:%d") % i for i in range(limit*2)]
207 difflib.SequenceMatcher(None, old, new).get_opcodes()
  /external/python/cpython3/Lib/lib2to3/
main.py 108 def print_output(self, old, new, filename, equal):
114 diff_lines = diff_texts(old, new, filename)
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
iterator.h 210 FilterIterator old = *this; local
212 return old;
  /external/v8/src/heap/
scavenger-inl.h 55 HeapObject* old = base::AsAtomicPointer::Release_CompareAndSwap( local
58 if (old != map) {
155 // always in old space.
  /external/zlib/src/contrib/delphi/
zlibd32.mak 71 # For the sake of the old Borland make,
  /external/zlib/src/contrib/pascal/
zlibd32.mak 71 # For the sake of the old Borland make,
  /frameworks/av/media/codec2/components/base/include/
SimpleC2Interface.h 224 const C2InterfaceHelper::C2P<type> &old,
228 me.set().value = old.v.value;
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg 197 root_<treeLevel> = (<ASTLabelType> *)[treeAdaptor becomeRoot:<label>_tree old:root_<treeLevel>];
267 root_<treeLevel> = (<ASTLabelType> *)[adaptor becomeRoot:<label>_tree old:root_<treeLevel>];
304 root_<treeLevel> = (<ASTLabelType> *)[treeAdaptor becomeRoot:<label>.tree old:root_<treeLevel>];
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateCoverageLevels.java 241 Relation<String, String> old = differences.get(element); local
242 if (old == null) {
243 old = Relation.of(new TreeMap<String, Set<String>>(attributeComparator), TreeSet.class);
244 differences.put(element, old);
252 if (lastValue != null) old.put(key, lastValue);
253 if (nextValue != null) old.put(key, nextValue);
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLookup.java 1062 T old; local
    [all...]
  /external/python/cpython3/Modules/
signalmodule.c 688 Returns old values as a tuple: (delay, interval).
696 struct itimerval new, old; local
706 if (setitimer(which, &new, &old) != 0) {
711 return itimer_retval(&old);
732 struct itimerval old; local
734 if (getitimer(which, &old) != 0) {
739 return itimer_retval(&old);
    [all...]
  /external/syzkaller/prog/
target.go 38 // allocate memory, etc. typ is the struct/union type. old is the old value of the struct/union
41 SpecialTypes map[string]func(g *Gen, typ Type, old Arg) (Arg, []*Call)
  /external/syzkaller/vendor/google.golang.org/api/gensupport/
resumable.go 99 // If old==updated, the callback is not called.
100 func (rx *ResumableUpload) reportProgress(old, updated int64) {
101 if updated-old == 0 {
  /external/antlr/runtime/ObjC/Framework/examples/polydiff/
PolyDifferentiator.m 348 root_1 = (CommonTree *)[treeAdaptor becomeRoot:char_literal1_tree old:root_1];
547 old:root_1];
558 old:root_2];
649 old:root_1];
660 old:root_2];
  /external/syzkaller/sys/linux/
init_alg.go 12 func (arch *arch) generateSockaddrAlg(g *prog.Gen, typ0 prog.Type, old prog.Arg) (
38 func (arch *arch) generateAlgName(g *prog.Gen, typ prog.Type, old prog.Arg) (
43 func (arch *arch) generateAlgAeadName(g *prog.Gen, typ prog.Type, old prog.Arg) (
48 func (arch *arch) generateAlgHashName(g *prog.Gen, typ prog.Type, old prog.Arg) (
53 func (arch *arch) generateAlgBlkcipherhName(g *prog.Gen, typ prog.Type, old prog.Arg) (
  /external/openssh/
ssh-keygen.c 1193 char *cp, tmp[PATH_MAX], old[PATH_MAX]; local
1218 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1219 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1260 if (unlink(old) == -1 && errno != ENOENT)
1261 fatal("unlink %.100s: %s", old, strerror(errno))
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_basics.py 506 old = self.d.set_get_returns_none(0)
507 self.assertEqual(old, 2)
517 old = self.d.set_get_returns_none(1)
528 old = self.d.set_get_returns_none(1)
529 self.assertEqual(old, 2)
530 old = self.d.set_get_returns_none(2)
531 self.assertEqual(old, 1)
    [all...]

Completed in 2711 milliseconds

<<11121314151617181920>>