Searched refs:first (Results 1 - 17 of 17) sorted by relevance

/system/extras/tests/bionic/libc/bionic/
H A Dlib_relocs.c6 struct foo { int first, second; }; member in struct:foo
9 int* FooPtr[] = { &Foo.first, &Foo.second };
/system/core/
H A DAndroid.mk18 include $(call first-makefiles-under,$(LOCAL_PATH))
/system/media/mca/filterfw/java/android/filterfw/core/
H A DRoundRobinScheduler.java46 Filter first = null;
51 if (first == null) {
52 // store the first available filter
53 first = filter;
65 if (first != null ) {
67 return first;
H A DOneShotScheduler.java54 Filter first = null;
55 // return the first filter that is not scheduled before.
69 if (first == filter) {
72 // save the first scheduled one
73 if (first == null) first = filter;
/system/extras/tests/lib/testUtil/
H A DtestUtil.c101 // second, is later than the time pointed to by first.
102 struct timespec tsDelta(const struct timespec *first, argument
107 assert(first != NULL);
109 assert(first->tv_nsec >= 0 && first->tv_nsec < nSecsPerSec);
111 rv.tv_sec = second->tv_sec - first->tv_sec;
112 if (second->tv_nsec >= first->tv_nsec) {
113 rv.tv_nsec = second->tv_nsec - first->tv_nsec;
115 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec;
124 // second, is later than the time pointed to by first
125 tvDelta(const struct timeval *first, const struct timeval *second) argument
[all...]
/system/extras/tests/include/
H A DtestUtil.h32 struct timespec tsDelta(const struct timespec *first,
34 struct timeval tvDelta(const struct timeval *first,
/system/core/sh/
H A Dcd.c156 int first; local
174 first = 1;
178 if (! first)
180 first = 0;
343 static int first = 1; local
348 if (first) {
349 first = 0;
H A Dshow.c127 int first; local
131 first = 1;
133 if (! first)
136 first = 0;
139 if (! first)
159 first = 0;
H A Dhistedit.c227 int first, last, direction; local
334 * determine [first] and [last]
356 first = str_to_event(firststr, 0);
361 last = first;
362 first = i;
369 direction = first < last ? H_PREV : H_NEXT;
395 retval = history(hist, &he, H_NEXT_EVENT, first);
507 * the notion of first and last is
/system/media/mca/filterpacks/imageproc/java/
H A DDuotoneFilter.java49 "uniform vec3 first;\n" +
55 " vec3 new_color = (1.0 - energy) * first + energy * second;\n" +
115 float first[] = { Color.red(mFirstColor)/255f,
122 mProgram.setHostValue("first", first);
/system/extras/ext4_utils/
H A Dallocate.c26 struct region *first; member in struct:region_list
64 alloc->list.first = NULL;
66 alloc->oob_list.first = NULL;
83 if (list->first == reg)
84 list->first = reg->next;
95 if (list->first == NULL) {
96 list->first = reg;
123 dump_starting_from(alloc->list.first);
126 dump_starting_from(alloc->oob_list.first);
194 /* Marks a the first num_block
[all...]
/system/media/mca/filterfw/native/core/
H A Dgl_env.cpp47 if (it->first != 0 || created_surface_) {
48 eglDestroySurface(display(), it->second.first);
60 if (it->first != 0 || created_context_)
227 eglDestroySurface(display(), surface_window_pair->first);
259 return it->first;
H A Dgl_env.h116 // the default surface (0) first. You cannot release the default surface.
130 return surfaces_.find(surface_id_)->second.first;
146 // the default context (0) first. You cannot release the default context.
/system/core/libsysutils/src/
H A DNetlinkEvent.cpp168 int first = 1; local
178 if (first) {
187 first = 0;
/system/core/gpttool/
H A Dgpttool.c118 int add_ptn(struct ptable *ptbl, u64 first, u64 last, const char *name) argument
124 if (first < 34) {
138 entry->first_lba = first;
/system/core/debuggerd/
H A Ddebuggerd.c435 bool first = true; local
489 if (first) {
492 first = false;
/system/core/include/cutils/
H A Dlog.h439 #define __android_rest(first, ...) , ## __VA_ARGS__

Completed in 1138 milliseconds