Searched refs:old (Results 76 - 100 of 699) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/base/
H A Datomicops_internals_mips64_gcc.h43 // Always return the old value of "*ptr"
71 Atomic32 temp, old; local
75 "ll %1, %2\n" // old = *ptr
81 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
85 return old;
208 Atomic64 temp, old; local
212 "lld %1, %2\n" // old = *ptr
218 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
222 return old;
H A Datomicops_internals_mips_gcc.h20 // Always return the old value of "*ptr"
48 Atomic32 temp, old; local
53 "ll %1, 0(%3)\n" // old = *ptr
59 : "=&r" (temp), "=&r" (old)
63 return old;
/external/libvpx/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm38 mfspr r0, 256 ;# get old VRSAVE
39 stw r0, -8(r1) ;# save old VRSAVE to stack
51 lwz r12, -8(r1) ;# restore old VRSAVE from stack
52 mtspr 256, r12 ;# reset old VRSAVE
87 mfspr r0, 256 ;# get old VRSAVE
88 stw r0, -8(r1) ;# save old VRSAVE to stack
104 lwz r12, -8(r1) ;# restore old VRSAVE from stack
105 mtspr 256, r12 ;# reset old VRSAVE
126 mfspr r0, 256 ;# get old VRSAVE
127 stw r0, -8(r1) ;# save old VRSAV
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/
H A Daica.c43 int i, j, old = 0; local
46 G2_LOCK(old);
61 G2_UNLOCK(old);
155 int old = 0; local
168 G2_LOCK(old);
211 G2_UNLOCK(old);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeRewriter.cs137 ITree old = oldTree as ITree;
139 string oldMessage = old != null ? old.ToStringTree() : "??";
/external/chromium_org/third_party/skia/gm/
H A Dcopy_config.py52 old=self._args.old_config_name,
55 def _duplicate_config(self, path, old, new):
60 old: old config name
69 if config == old:
H A Drename_config.py52 old=self._args.old_config_name,
55 def _rename_config(self, path, old, new):
60 old: old config name
69 if config == old:
90 help=('Config name we want to replace the old one with.'))
/external/clang/include/clang/Sema/
H A DSemaInternal.h65 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; local
66 if (old.isInvalid()) old = Loc;
/external/clang/test/SemaCXX/
H A Denable_if.cpp36 __attribute__((deprecated)) constexpr int old() { return 0; } // expected-note2{{'old' has been explicitly marked deprecated here}} function
37 void deprec1(int i) __attribute__((enable_if(old() == 0, "chosen when old() is zero"))); // expected-warning{{'old' is deprecated}}
38 void deprec2(int i) __attribute__((enable_if(old() == 0, "chosen when old() is zero"))); // expected-warning{{'old' is deprecated}}
/external/deqp/scripts/
H A Dcaselist_diff.py146 def diffCaseLists (old, new):
150 oldSet = set(old)
159 for case in old:
167 print "%s [old caselist] [new caselist]" % sys.argv[0]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_network.c176 int old = fcntl(s, F_GETFL, 0); local
177 if (old == -1)
182 fcntl(s, F_SETFL, old & ~O_NONBLOCK);
184 fcntl(s, F_SETFL, old | O_NONBLOCK);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dapplegl_glx.c52 applegl_bind_context(struct glx_context *gc, struct glx_context *old, argument
57 (old && old != &dummyContext) ? old->driContext : NULL,
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayAdd.cpp148 SkDisplayable* old = (*parentList)[index]; local
150 delete old;
155 if (child == old || child->contains(old))
158 if (maker.fHelpers.find(old) < 0)
159 maker.helperAdd(old);
167 SkDisplayable* old = (*parentList)[index]; local
168 if (maker.fHelpers.find(old) < 0)
169 maker.helperAdd(old);
/external/lldb/tools/debugserver/source/
H A DPThreadEvent.cpp99 // Save the old event bit state so we can tell if things change
100 uint32_t old = m_bits; local
104 if (old != m_bits)
118 // Save the old event bit state so we can tell if things change
119 uint32_t old = m_bits; local
123 if (old != m_bits)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c176 int old = fcntl(s, F_GETFL, 0); local
177 if (old == -1)
182 fcntl(s, F_SETFL, old & ~O_NONBLOCK);
184 fcntl(s, F_SETFL, old | O_NONBLOCK);
/external/mesa3d/src/glx/
H A Dapplegl_glx.c52 applegl_bind_context(struct glx_context *gc, struct glx_context *old, argument
57 (old && old != &dummyContext) ? old->driContext : NULL,
/external/qemu/include/qemu/
H A Dbitops.h66 * test_and_set_bit - Set a bit and return its old value
74 unsigned long old = *p; local
76 *p = old | mask;
77 return (old & mask) != 0;
81 * test_and_clear_bit - Clear a bit and return its old value
89 unsigned long old = *p; local
91 *p = old & ~mask;
92 return (old & mask) != 0;
96 * test_and_change_bit - Change a bit and return its old value
104 unsigned long old local
[all...]
/external/skia/src/animator/
H A DSkDisplayAdd.cpp148 SkDisplayable* old = (*parentList)[index]; local
150 delete old;
155 if (child == old || child->contains(old))
158 if (maker.fHelpers.find(old) < 0)
159 maker.helperAdd(old);
167 SkDisplayable* old = (*parentList)[index]; local
168 if (maker.fHelpers.find(old) < 0)
169 maker.helperAdd(old);
/external/chromium_org/third_party/libxslt/libxslt/
H A Dattributes.c191 * @old: another XSLT AttrElem list
193 * Add all the attributes from list @old to list @list,
200 xsltAttrElemPtr list, xsltAttrElemPtr old) {
204 while (old != NULL) {
205 if ((old->attr == NULL) && (old->set == NULL)) {
206 old = old->next;
221 if ((cur->set != NULL) && (cur->set == old->set)) {
231 if (old
199 xsltMergeAttrElemList(xsltStylesheetPtr style, xsltAttrElemPtr list, xsltAttrElemPtr old) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DTSIG.java207 * @param old If this message is a response, the TSIG from the request
211 generate(Message m, byte [] b, int error, TSIGRecord old) { argument
216 timeSigned = old.getTimeSigned();
226 if (old != null) {
228 out.writeU16(old.getSignature().length);
231 hmac.update(old.getSignature());
283 * @param old If this message is a response, the TSIG from the request
286 apply(Message m, int error, TSIGRecord old) { argument
287 Record r = generate(m, m.toWire(), error, old);
295 * @param old I
298 apply(Message m, TSIGRecord old) argument
308 applyStream(Message m, TSIGRecord old, boolean first) argument
364 verify(Message m, byte [] b, int length, TSIGRecord old) argument
458 verify(Message m, byte [] b, TSIGRecord old) argument
489 StreamVerifier(TSIG tsig, TSIGRecord old) argument
[all...]
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar.stderr.exp91 (8): old creat
121 (11): old execv
185 (17): old break
204 (19): old lseek
207 (21): old mount
210 (22): old umount
213 (38): old stat
216 (40): old lstat
219 (45): old ktrace
222 (62): old fsta
[all...]
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java144 Scheme old = registeredSchemes.put(sch.getName(), sch);
145 return old;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffHeader.pl85 old mode 100644
92 old mode 100644
/external/chromium_org/tools/
H A Dbisect_test.py20 for obj, name, old in self.patched:
21 setattr(obj, name, old)
/external/elfutils/0.153/libdw/
H A Dlibdw_alloc.c87 Dwarf_OOM old = dbg->oom_handler; local
89 return old;

Completed in 8367 milliseconds

1234567891011>>