HomeSort by relevance Sort by last modified time
    Searched full:prev (Results 26 - 50 of 3406) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bzip2/
format.pl 43 my ($prev, $curr, $str);
44 $prev = ''; $curr = '';
47 print OUTFILE $prev;
48 $prev = $curr;
52 if ( $prev =~ /<programlisting>$|<screen>$/ ) {
53 chomp $prev;
54 $curr = join( '', $prev, "<![CDATA[", $curr );
55 $prev = '';
59 chomp $prev;
60 $curr = join( '', $prev, "]]>", $curr )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_double_list.h 47 struct list_head *prev; member in struct:list_head
53 item->prev = item;
59 item->prev = list;
61 list->next->prev = item;
68 item->prev = list->prev;
69 list->prev->next = item;
70 list->prev = item;
75 to->prev = from->prev;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 47 struct list_head *prev; member in struct:list_head
53 item->prev = item;
59 item->prev = list;
61 list->next->prev = item;
68 item->prev = list->prev;
69 list->prev->next = item;
70 list->prev = item;
75 to->prev = from->prev;
    [all...]
  /frameworks/rs/driver/runtime/
rs_core.c 107 uint32_t prev, status; local
109 prev = *ptr;
110 uint32_t n = min(value, prev);
111 status = __sync_val_compare_and_swap(ptr, prev, n);
112 } while (status != prev);
113 return prev;
117 int32_t prev, status; local
119 prev = *ptr;
120 int32_t n = min(value, prev);
121 status = __sync_val_compare_and_swap(ptr, prev, n)
127 uint32_t prev, status; local
137 int32_t prev, status; local
    [all...]
  /system/core/include/cutils/
atomic-arm64.h 111 int32_t prev, status; local
114 prev = *ptr;
115 status = android_atomic_cas(prev, prev + increment, ptr);
117 return prev;
135 int32_t prev, status; local
138 prev = *ptr;
139 status = android_atomic_cas(prev, prev & value, ptr);
141 return prev;
147 int32_t prev, status; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/halloc/src/
hlist.h 38 hlist_item_t ** prev; member in struct:hlist_item
95 i->prev = &i->next;
105 next->prev = &i->next;
107 i->prev = &h->next;
116 next->prev = i->prev;
117 *i->prev = next;
125 *i->prev = i;
126 i->next->prev = &i->next;
132 h->next->prev = &h->next
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 29 * contain no data. The head sentinel can be identified by its \c prev
34 * tail sentinel or the tail sentinel's \c prev poiner points to the head
45 * - A \c tail pointer that represents the \c prev pointer of the head
48 * - A \c tail_prev pointer that represents the \c prev pointer of the
51 * Therefore, if \c head->next is \c NULL or \c tail_prev->prev is \c NULL,
76 struct exec_node *prev; member in struct:exec_node
98 exec_node() : next(NULL), prev(NULL)
115 return prev;
120 return prev;
125 next->prev = prev
    [all...]
  /external/libvpx/libvpx/third_party/nestegg/halloc/src/
hlist.h 38 hlist_item_t ** prev; member in struct:hlist_item
95 i->prev = &i->next;
105 next->prev = &i->next;
107 i->prev = &h->next;
116 next->prev = i->prev;
117 *i->prev = next;
125 *i->prev = i;
126 i->next->prev = &i->next;
132 h->next->prev = &h->next
    [all...]
  /external/mesa3d/src/glsl/
list.h 29 * contain no data. The head sentinel can be identified by its \c prev
34 * tail sentinel or the tail sentinel's \c prev poiner points to the head
45 * - A \c tail pointer that represents the \c prev pointer of the head
48 * - A \c tail_prev pointer that represents the \c prev pointer of the
51 * Therefore, if \c head->next is \c NULL or \c tail_prev->prev is \c NULL,
76 struct exec_node *prev; member in struct:exec_node
98 exec_node() : next(NULL), prev(NULL)
115 return prev;
120 return prev;
125 next->prev = prev
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/halloc/src/
hlist.h 38 hlist_item_t ** prev; member in struct:hlist_item
95 i->prev = &i->next;
105 next->prev = &i->next;
107 i->prev = &h->next;
116 next->prev = i->prev;
117 *i->prev = next;
125 *i->prev = i;
126 i->next->prev = &i->next;
132 h->next->prev = &h->next
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /external/e2fsprogs/lib/ext2fs/
unlink.c 26 struct ext2_dir_entry *prev; member in struct:link_struct
40 struct ext2_dir_entry *prev; local
42 prev = ls->prev;
43 ls->prev = dirent;
60 prev->rec_len += dirent->rec_len;
90 ls.prev = 0;
  /external/libusb-compat/libusb/
usbi.h 29 ent->next->prev = ent; \
32 ent->prev = NULL; \
38 if (ent->prev) \
39 ent->prev->next = ent->next; \
43 ent->next->prev = ent->prev; \
44 ent->prev = NULL; \
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
system.h 32 #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
35 #define finish_arch_switch(prev) do { if (cpu_has_dsp) __restore_dsp(current); if (cpu_has_userlocal) write_c0_userlocal(current_thread_info()->tp_value); } while (0)
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 83 uint8 *prev, /* i */
96 offset = width - B_SIZE; /* offset for prev */
99 tmp = (uintptr_t)prev & 0x3;
106 *((uint32*)(pred_block += offset2)) = *((uint32*)prev);
107 *((uint32*)(pred_block += 4)) = *((uint32*)(prev + 4));
108 prev += width;
114 prev--; /* word-aligned */
118 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
119 word2 = *((uint32*)(prev += 4)); /* read 4 bytes, b8 b7 b6 b5 */
124 word1 = *((uint32*)(prev += 4)); /* b12 b11 b10 b9 *
    [all...]

Completed in 860 milliseconds

12 3 4 5 6 7 8 91011>>