Searched refs:old (Results 1 - 25 of 72) sorted by relevance

123

/device/google/contexthub/firmware/os/cpu/x86/
H A Datomic.c21 uint32_t old; local
24 old = *val;
25 } while (!atomicCmpXchg32bits(val, old, old + addend));
27 return old;
32 uint8_t old; local
35 old = *val;
36 } while (!atomicCmpXchgByte(val, old, old + addend));
38 return old;
[all...]
H A DatomicBitset.c49 uint32_t old, new; local
56 old = *wordPtr;
57 new = old &~ mask;
58 } while (!atomicCmpXchg32bits(wordPtr, old, new));
67 uint32_t old, new; local
70 old = *wordPtr;
71 if (!(old + 1)) /* no work for words with no clear bits */
74 pos = __builtin_ctz(~old); /* This will allocate in diff order than ARM. Since we never made any promises on order of bits returned, this is ok */
75 new = old | (1 << pos);
77 if (atomicCmpXchg32bits(wordPtr, old, ne
[all...]
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
H A Dacpi_func.h78 uint32_t new, old;
81 old = *lock;
82 new = ((old & ~GL_BIT_MASK) | GL_BIT_OWNED) |
83 ((old >> 1) & GL_BIT_PENDING);
84 } while (atomic_cmpset_acq_int(lock, old, new) == 0);
97 uint32_t new, old;
100 old = *lock;
101 new = old & ~GL_BIT_MASK;
102 } while (atomic_cmpset_rel_int(lock, old, new) == 0);
104 return (old
[all...]
H A Dpcb.h71 int swapctx(struct pcb *old, struct pcb *new);
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
H A Dfpsetmask.c56 const fp_except old = float_exception_mask;
58 return old;
H A Dfpsetround.c56 const fp_rnd old = float_rounding_mode;
58 return old;
H A Dfpsetsticky.c56 const fp_except old = float_exception_flags;
58 return old;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dlinktree.py50 def linknames(old, new, link):
51 if debug: print 'linknames', (old, new, link)
53 names = os.listdir(old)
55 print old + ': warning: cannot listdir:', msg
59 oldname = os.path.join(old, name)
/device/asus/fugu/power/
H A DAndroid.mk12 # power.c uses of GNU old-style field designator extension
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dunicodedata.c134 const change_record *old = get_old_record(self, c); local
135 if (old->category_changed == 0) {
140 else if (old->decimal_changed != 0xFF) {
142 rc = old->decimal_changed;
219 const change_record *old = get_old_record(self, c); local
220 if (old->category_changed == 0) {
225 else if (old->decimal_changed != 0xFF) {
227 rc = old->decimal_changed;
267 const change_record *old = get_old_record(self, c); local
268 if (old
296 const change_record *old = get_old_record(self, c); local
327 const change_record *old = get_old_record(self, c); local
356 const change_record *old = get_old_record(self, c); local
386 const change_record *old = get_old_record(self, c); local
419 const change_record *old = get_old_record(self, c); local
901 const change_record *old = get_old_record(self, code); local
[all...]
H A Dgcmodule.c497 * CAUTION: An instance of an old-style class has to be checked for a
595 * weakrefs with callbacks may be moved into the `old` generation. Objects
596 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
601 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old) argument
733 gc_list_move(gc, old);
773 * merged into the old list regardless.
778 handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old) argument
796 gc_list_merge(finalizers, old);
805 delete_garbage(PyGC_Head *collectable, PyGC_Head *old) argument
826 gc_list_move(gc, old);
878 PyGC_Head *old; /* next older generation */ local
[all...]
H A Dsignalmodule.c455 struct itimerval new, old; local
463 if (setitimer(which, &new, &old) != 0) {
468 return itimer_retval(&old);
479 Returns old values as a tuple: (delay, interval).");
488 struct itimerval old; local
493 if (getitimer(which, &old) != 0) {
498 return itimer_retval(&old);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
H A Dtest_build_scripts.py96 old = sysconfig.get_config_vars().get('VERSION')
101 if old is not None:
102 sysconfig._CONFIG_VARS['VERSION'] = old
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dgetpass.py63 old = termios.tcgetattr(fd) # a copy to save
64 new = old[:]
73 termios.tcsetattr(fd, tcsetattr_flags, old)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dunicodedata.c134 const change_record *old = get_old_record(self, c); local
135 if (old->category_changed == 0) {
140 else if (old->decimal_changed != 0xFF) {
142 rc = old->decimal_changed;
219 const change_record *old = get_old_record(self, c); local
220 if (old->category_changed == 0) {
225 else if (old->decimal_changed != 0xFF) {
227 rc = old->decimal_changed;
267 const change_record *old = get_old_record(self, c); local
268 if (old
296 const change_record *old = get_old_record(self, c); local
327 const change_record *old = get_old_record(self, c); local
356 const change_record *old = get_old_record(self, c); local
386 const change_record *old = get_old_record(self, c); local
419 const change_record *old = get_old_record(self, c); local
894 const change_record *old = get_old_record(self, code); local
[all...]
H A Dgcmodule.c460 * CAUTION: An instance of an old-style class has to be checked for a
544 * weakrefs with callbacks may be moved into the `old` generation. Objects
545 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
550 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old) argument
682 gc_list_move(gc, old);
722 * merged into the old list regardless.
727 handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old) argument
745 gc_list_merge(finalizers, old);
754 delete_garbage(PyGC_Head *collectable, PyGC_Head *old) argument
775 gc_list_move(gc, old);
827 PyGC_Head *old; /* next older generation */ local
[all...]
H A Dsignalmodule.c447 struct itimerval new, old; local
455 if (setitimer(which, &new, &old) != 0) {
460 return itimer_retval(&old);
471 Returns old values as a tuple: (delay, interval).");
480 struct itimerval old; local
485 if (getitimer(which, &old) != 0) {
490 return itimer_retval(&old);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dlog.py60 # return the old threshold for use from tests
61 old = _global_log.threshold
63 return old
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DLongFilePathOs.py39 def rename(old, new):
40 return os.rename(LongFilePath(old), LongFilePath(new))
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
H A Dfdt_rw.c397 static void _fdt_packblocks(const char *old, char *new, argument
406 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
409 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
413 memmove(new + strings_off, old + fdt_off_dt_strings(old),
414 fdt_size_dt_strings(old));
416 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
463 /* But if that overlaps with the old tre
[all...]
/device/linaro/bootloader/edk2/EmulatorPkg/Sec/X64/
H A DSwitchRam.asm54 pop r9 ; CopySize (old stack)
55 pop r8 ; PermanentMemoryBase (old stack)
56 pop rdx ; TemporaryMemoryBase (old stack)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
H A Dtest_fixers.py1635 for old, new in self.modules.items():
1636 b = "import %s" % old
1640 b = "import foo, %s, bar" % old
1645 for old, new in self.modules.items():
1646 b = "from %s import foo" % old
1650 b = "from %s import foo, bar" % old
1654 b = "from %s import (yes, no)" % old
1659 for old, new in self.modules.items():
1660 b = "import %s as foo_bar" % old
1664 b = "import %s as foo_bar" % old
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dllex.c149 int old = ls->current; local
152 if (currIsNewline(ls) && ls->current != old)
216 char old = ls->decpoint; local
218 buffreplace(ls, old, ls->decpoint); /* try new decimal separator */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
H A Dmakeunicodedata.py308 # Generate delta tables for old versions
724 def merge_old_version(version, new, old):
726 if old.exclusions != new.exclusions:
742 # be unassigned in the old one
743 assert old.table[i] is None
745 # check characters unassigned in the old version
746 if old.table[i] is None:
751 if old.table[i] != new.table[i]:
752 for k in range(len(old.table[i])):
753 if old
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
H A Dmain.py59 def print_output(self, old, new, filename, equal):
65 diff_lines = diff_texts(old, new, filename)

Completed in 484 milliseconds

123