Searched defs:old (Results 1 - 25 of 369) sorted by path

1234567891011>>

/external/aac/libPCMutils/src/
H A Dlimiter.cpp226 FIXP_DBL tmp, old, gain, additionalGain, additionalGainUnfiltered; local
292 old = maxBuf[maxBufIdx];
296 /* new sample is greater than old maximum, so it is the new maximum */
299 else if (old < max) {
304 /* the old maximum has left the window, we have to search the complete
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/blktrace/btt/
H A Dlist.h217 * list_replace - replace old entry by new one
218 * @old : the element to be replaced
221 * If @old was empty, it will be overwritten.
223 static inline void list_replace(struct list_head *old, argument
226 new->next = old->next;
228 new->prev = old->prev;
232 static inline void list_replace_init(struct list_head *old, argument
235 list_replace(old, new);
236 INIT_LIST_HEAD(old);
/external/blktrace/
H A Drbtree.c233 struct rb_node *old = node, *left; local
244 if (parent == old) {
250 node->rb_parent_color = old->rb_parent_color;
251 node->rb_right = old->rb_right;
252 node->rb_left = old->rb_left;
254 if (rb_parent(old))
256 if (rb_parent(old)->rb_left == old)
257 rb_parent(old)->rb_left = node;
259 rb_parent(old)
[all...]
/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/bsdiff/
H A Dbsdiff.c104 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize) argument
110 for(i=0;i<oldsize;i++) buckets[old[i]]++;
115 for(i=0;i<oldsize;i++) I[++buckets[old[i]]]=i;
117 for(i=0;i<oldsize;i++) V[i]=buckets[old[i]];
142 static off_t matchlen(u_char *old,off_t oldsize,u_char *new,off_t newsize) argument
147 if(old[i]!=new[i]) break;
152 static off_t search(off_t *I,u_char *old,off_t oldsize, argument
158 x=matchlen(old+I[st],oldsize-I[st],new,newsize);
159 y=matchlen(old+I[en],oldsize-I[en],new,newsize);
171 if(memcmp(old
199 u_char *old,*new; local
[all...]
H A Dbspatch.c67 u_char *old, *new; local
138 ((old=malloc(oldsize+1))==NULL) ||
140 (read(fd,old,oldsize)!=oldsize) ||
170 /* Add old data to diff string */
173 new[newpos+i]+=old[oldpos+i];
207 free(old);
/external/chromium_org/ash/shelf/
H A Dshelf_window_watcher.cc240 intptr_t old) {
246 if (reinterpret_cast<ShelfItemDetails*>(old) != NULL)
238 OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) argument
/external/chromium_org/ash/wm/
H A Dalways_on_top_controller.cc55 intptr_t old) {
53 OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) argument
H A Dlock_layout_manager.cc88 intptr_t old) {
86 OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) argument
H A Dsystem_modal_container_layout_manager.cc103 intptr_t old) {
109 } else if (static_cast<ui::ModalType>(old) != ui::MODAL_TYPE_NONE) {
100 OnWindowPropertyChanged( aura::Window* window, const void* key, intptr_t old) argument
H A Dtoplevel_window_event_handler.cc138 wm::WindowStateType old) {
136 OnPreWindowStateTypeChange( wm::WindowState* window_state, wm::WindowStateType old) argument
H A Dwindow_state.cc300 intptr_t old) {
423 // Takes ownership of the old layer and all its children, which will be
425 // Specify |set_bounds| to true here to keep the old bounds in the child
298 OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) argument
/external/chromium_org/ash/wm/panels/
H A Dpanel_layout_manager.cc477 intptr_t old) {
475 OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) argument
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_layout_manager.cc213 intptr_t old) {
211 OnWindowPropertyChanged(Window* window, const void* key, intptr_t old) argument
/external/chromium_org/base/
H A Datomicops_internals_mips_gcc.h22 // Always return the old value of "*ptr"
50 Atomic32 temp, old; local
54 "ll %1, %4\n" // old = *ptr
60 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
64 return old;
179 Atomic64 temp, old; local
183 "lld %1, %4\n" // old = *ptr
189 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
193 return old;
/external/chromium_org/base/memory/
H A Dscoped_ptr.h231 // should update the stored pointer before deleting its old value.
243 T* old = data_.ptr; local
245 if (old != NULL)
246 static_cast<D&>(data_)(old);
/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/chromeos/login/users/wallpaper/
H A Dwallpaper_manager_browsertest.cc281 // Some users have old user profiles which may have legacy wallpapers. And these
283 // This tests make sure we compatible with migrated old wallpapers.
314 // Some users have old user profiles which may never get a chance to migrate.
578 const size_t old = update_wallpaper_count_; local
580 return old;
/external/chromium_org/chrome/browser/extensions/api/runtime/
H A Dchrome_runtime_api_delegate.cc85 const Extension* old = service->GetExtensionById(extension->id(), true); local
86 if (old)
87 return *old->version();
/external/chromium_org/chrome/browser/extensions/
H A Dextension_keybinding_registry.cc63 EventTargets::iterator old = it++; local
66 RemoveExtensionKeybindingImpl(old->first, command_name);
67 event_targets_.erase(old);
H A Dextension_service.cc1342 const Extension* old = GetInstalledExtension(extension->id()); local
1343 if (old) {
1346 extension->version()->CompareTo(*(old->version()));
1369 // To upgrade an extension in place, unload the old one and then load the
1403 // Replace the old extension with the new version.
1852 extension->name() /* old name */);
1862 extension->name() /* old name */);
2154 const Extension* old = GetInstalledExtension(extension_id); local
2155 // If there is no old extension, this is not an update, so don't delay.
2156 if (!old)
[all...]
H A Dshared_module_service_unittest.cc75 const Extension* old = registry()->GetExtensionById( local
81 if (old)
84 if (!old)
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_request_scheduler_mobile_unittest.cc41 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
43 old.ToInternalValue());
84 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
86 old.ToInternalValue());
111 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
113 old.ToInternalValue());
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dapp_window_launcher_item_controller.cc298 intptr_t old) {
295 OnWindowPropertyChanged( aura::Window* window, const void* key, intptr_t old) argument

Completed in 2630 milliseconds

1234567891011>>