Searched defs:top (Results 1 - 11 of 11) sorted by relevance

/system/core/include/utils/
H A DSortedVector.h99 //! stack-usage of the vector. returns the top of the stack (last element)
100 const TYPE& top() const;
201 const TYPE& SortedVector<TYPE>::top() const { function in class:android::SortedVector
H A DVector.h106 //! stack-usage of the vector. returns the top of the stack (last element)
107 const TYPE& top() const;
115 //! grants right access to the top of the stack (last element)
143 //! pop the top of the stack (removes the last element). No-op if the stack's empty
147 //! pushes an item on the top of the stack
292 const TYPE& Vector<TYPE>::top() const { function in class:android::Vector
/system/core/libmincrypt/
H A Dp256.c69 // top, c[] += a[] * b
70 // Returns new top
73 p256_digit top,
84 return top + (p256_digit)carry;
87 // top, c[] -= top_a, a[]
108 // top, c[] -= MOD[] & mask (0 or -1)
109 // returns new top.
111 p256_digit top,
122 return top + (p256_digit)borrow;
125 // top,
71 mulAdd(const p256_int* a, p256_digit b, p256_digit top, p256_digit* c) argument
110 subM(const p256_int* MOD, p256_digit top, p256_digit* c, p256_digit mask) argument
127 addM(const p256_int* MOD, p256_digit top, p256_digit* c, p256_digit mask) argument
149 p256_digit top = 0; local
196 p256_digit top = P256_DIGIT(a, P256_NDIGITS - 1); local
[all...]
H A Dp256_ec.c302 * felem. So the top of an element of tmp might overlap with another
364 * offset from the value of i at the top of the loop). The amounts are
369 * Added in top half: 28 11 29 21 29 28
1202 int i, top; local
1210 top = p256_shl(&result, 29, &tmp);
1212 top = p256_shl(&result, 28, &tmp);
1214 top |= p256_add_d(&tmp, in[i], &result);
1217 p256_modmul(&SECP256r1_p, &kRInv, top, &result, out);
/system/core/libpixelflinger/codeflinger/tinyutils/
H A DVector.h95 //! stack-usage of the vector. returns the top of the stack (last element)
96 const TYPE& top() const;
106 //! grants right acces to the top of the stack (last element)
128 //! pop the top of the stack (removes the last element). No-op if the stack's empty
132 //! pushes an item on the top of the stack
241 const TYPE& Vector<TYPE>::top() const { function in class:android::tinyutils::Vector
/system/core/liblog/
H A Dlog_read.c249 struct logger_list *top; member in struct:logger
535 logger->top = logger_list;
H A Dlog_read_kern.c155 struct logger_list *top; member in struct:logger
175 if (logger->top->queued_lines) {
176 logger->top->queued_lines--;
200 if (!logger || !logger->top) {
205 || (((mode ^ logger->top->mode) & O_ACCMODE) == 0)) {
354 logger->top = logger_list;
/system/core/include/system/
H A Dwindow.h66 int32_t top; member in struct:android_native_rect_t
817 * to the transform parameter specified applied on top of the regular buffer
/system/core/adb/
H A Dcommandline.c957 static int top_works(const char *top) argument
959 if (top != NULL && adb_is_absolute_host_path(top)) {
962 "%s" OS_PATH_SEPARATOR_STR SENTINEL_FILE, top);
987 char *top = getenv("ANDROID_BUILD_TOP"); local
988 if (top != NULL && top[0] != '\0') {
989 if (!top_works(top)) {
990 fprintf(stderr, "adb: bad ANDROID_BUILD_TOP value \"%s\"\n", top);
994 top
1077 const char *top = find_top(top_buf); local
[all...]
/system/core/include/private/pixelflinger/
H A Dggl_context.h332 uint32_t top; member in struct:android::scissor_t
/system/core/libpixelflinger/
H A Dtrap.cpp220 if (t < GGLint(c->state.scissor.top)) {
221 ystart += TRI_FROM_INT(c->state.scissor.top-t);
222 t = GGLint(c->state.scissor.top);
285 if (t < GGLint(c->state.scissor.top)) {
286 ystart += TRI_FROM_INT(c->state.scissor.top-t);
287 t = GGLint(c->state.scissor.top);
426 if (t < GGLint(c->state.scissor.top))
427 t = GGLint(c->state.scissor.top);
545 const int32_t miny = max(bminy, c->state.scissor.top);
642 ALOGI( " top
670 const GGLfixed* top = p1; local
860 const GGLfixed* top = p1; local
[all...]

Completed in 107 milliseconds