Searched defs:old (Results 151 - 175 of 369) sorted by relevance

1234567891011>>

/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/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/coregrind/
H A Dm_sparsewa.c101 UChar old = arr[bix]; local
102 UChar nyu = old | (1 << off);
104 return (old >> off) & 1;
110 UChar old = arr[bix]; local
111 UChar nyu = old & ~(1 << off);
113 return (old >> off) & 1;
123 // if (0) VG_(printf)("PUSH, old sp = %d\n", sp);
138 // if (0) VG_(printf)("POP, old sp = %d\n", sp+1);
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h155 DWORD old = InterlockedExchange(lastTimeGetTimePtr, now); local
156 if(now < old)
158 // If now is earlier than old, there may have been a race between
162 if(old > 0xf0000000 && now < 0x0fffffff)
/external/bluetooth/bluedroid/main/
H A Dbte_main.c255 int old = (hci_logging_enabled == TRUE) || (hci_logging_config == TRUE); local
266 if ((old == new) || bt_disabled || (bt_hc_if == NULL)) {
/external/chromium_org/ash/wm/
H A Dtoplevel_window_event_handler.cc138 wm::WindowStateType old) {
136 OnPreWindowStateTypeChange( wm::WindowState* window_state, wm::WindowStateType old) argument
/external/chromium_org/base/time/
H A Dtime_win.cc369 // reality due to bugs in BIOS or HAL on some, especially old computers.
495 TickFunctionType old = tick_function; local
499 return old;
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout.cc64 int old = active_index(); local
66 if (old == active_index() || !requires_stacking())
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/
H A Dgoobsdiff.c119 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize) argument
125 for(i=0;i<oldsize;i++) buckets[old[i]]++;
130 for(i=0;i<oldsize;i++) I[++buckets[old[i]]]=i;
132 for(i=0;i<oldsize;i++) V[i]=buckets[old[i]];
157 static off_t matchlen(u_char *old,off_t oldsize,u_char *new,off_t newsize) argument
162 if(old[i]!=new[i]) break;
167 static off_t search(off_t *I,u_char *old,off_t oldsize, argument
173 x=matchlen(old+I[st],oldsize-I[st],new,newsize);
174 y=matchlen(old+I[en],oldsize-I[en],new,newsize);
186 if(memcmp(old
335 u_char *old,*new; local
[all...]
/external/chromium_org/courgette/third_party/
H A Dbsdiff_create.cc115 qsufsort(PagedArray<int>& I, PagedArray<int>& V,const unsigned char *old,int oldsize) argument
121 for(i=0;i<oldsize;i++) buckets[old[i]]++;
126 for(i=0;i<oldsize;i++) I[++buckets[old[i]]]=i;
128 for(i=0;i<oldsize;i++) V[i]=buckets[old[i]];
154 matchlen(const unsigned char *old,int oldsize,const unsigned char *newbuf,int newsize) argument
159 if(old[i]!=newbuf[i]) break;
165 search(PagedArray<int>& I,const unsigned char *old,int oldsize, argument
171 x=matchlen(old+I[st],oldsize-I[st],newbuf,newsize);
172 y=matchlen(old+I[en],oldsize-I[en],newbuf,newsize);
184 if(memcmp(old
218 const uint8* old = old_stream->Buffer(); local
[all...]
/external/chromium_org/sync/internal_api/
H A Dwrite_node.cc158 // Copy over the old specifics if they exist.
238 // old data. Note that this only modifies the node's local data, not the
463 const syncable::Id& old = entry_->GetPredecessorId(); local
464 if ((!predecessor && old.IsRoot()) ||
465 (predecessor && (old == predecessor->GetEntry()->GetId()))) {
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DCacheTest.cpp45 std::string old = m_lastErrorWebCacheMethodCalled; local
47 return old;
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-graphite2.cc130 hb_graphite2_tablelist_t *old = tlist; local
133 free (old);
/external/chromium_org/third_party/icu/source/common/
H A Dstringtriebuilder.cpp326 const UHashElement *old=uhash_find(nodes, newNode); local
327 if(old!=NULL) {
329 return (Node *)old->key.pointer;
351 const UHashElement *old=uhash_find(nodes, &key); local
352 if(old!=NULL) {
353 return (Node *)old->key.pointer;
H A Duvector.cpp402 UObjectDeleter *old = deleter; local
404 return old;
408 UElementsAreEqual *old = comparer; local
410 return old;
/external/chromium_org/third_party/icu/source/io/
H A Dustdio.c65 UTransliterator *old = NULL; local
90 old = file->fTranslit->translit;
114 old = file->fTranslit->translit;
121 return old;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache.cc64 LRUHandle* old = *ptr; local
65 h->next_hash = (old == NULL ? NULL : old->next_hash);
67 if (old == NULL) {
75 return old;
242 LRUHandle* old = table_.Insert(e); local
243 if (old != NULL) {
244 LRU_Remove(old);
245 Unref(old);
249 LRUHandle* old local
[all...]
/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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc60 // Library is too old for headers.
71 // Headers are too old for library.
209 LogHandler* old = internal::log_handler_; local
210 if (old == &internal::NullLogHandler) {
211 old = NULL;
218 return old;
/external/chromium_org/third_party/re2/re2/
H A Dnfa.cc343 const char* old = t->capture[1]; // previous end pointer local
360 t->capture[0] = old;
368 t->capture[0] = old;
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dltable.c308 Node *nold = t->node; /* save old hash ... */
325 Node *old = nold+i; local
326 if (!ttisnil(gval(old))) {
329 setobjt2t(L, luaH_set(L, t, gkey(old)), gval(old));
333 luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old array */
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock.cc100 DWORD old = InterlockedExchange(timeInMsPtr, t); local
101 if(old > t) {
/external/clang/test/CodeGen/
H A Datomic-ops.c281 struct foo old; local
282 __atomic_exchange(&f, &bigThing, &old, 5);
/external/compiler-rt/lib/asan/
H A Dasan_rtl.cc733 int old = flags()->exitcode; local
735 return old;
/external/dhcpcd/
H A Dconfigure.c72 sigset_t old; local
76 sigprocmask(SIG_SETMASK, &full, &old);
84 sigprocmask(SIG_SETMASK, &old, NULL);
93 sigprocmask(SIG_SETMASK, &old, NULL);
245 if (iface->state->old != NULL ||
253 if (dhcp && iface->state->old) {
254 e = configure_env(NULL, NULL, iface->state->old, ifo);
257 elen += configure_env(env + elen, "old",
258 iface->state->old, ifo);
260 append_config(&env, &elen, "old",
[all...]

Completed in 7299 milliseconds

1234567891011>>