Searched refs:left (Results 1 - 25 of 145) sorted by relevance

123456

/device/google/accessory/demokit/app/src/com/google/android/DemoKit/
H A DUtilities.java9 int left = x - w / 2;
11 int right = left + w;
13 d.setBounds(left, top, right, bottom);
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
H A DFormatConversions.h31 int left, int top, int right, int bottom);
33 int left, int top, int right, int bottom);
35 int left, int top, int right, int bottom);
37 int left, int top, int right, int bottom);
39 int left, int top, int right, int bottom);
41 int left, int top, int right, int bottom);
44 int width, int height, int top, int left,
H A DFormatConversions.cpp68 int left, int top, int right, int bottom) {
86 for (int i = left; i <= right; ++i) {
108 int left, int top, int right, int bottom) {
128 for (int i = left; i <= right; ++i) {
145 int left, int top, int right, int bottom) {
164 for (int i = left; i <= right; ++i) {
182 int left, int top, int right, int bottom) {
199 uint16_t *rgb_ptr = rgb_ptr0 + (j-top) * (right-left+1);
200 for (int i = left; i <= right; ++i) {
219 rgb_ptr[i-left]
67 rgb565_to_yv12(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
107 rgb888_to_yv12(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
144 rgb888_to_yuv420p(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
181 yv12_to_rgb565(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
226 yv12_to_rgb888(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
272 yuv420p_to_rgb888(char* dest, char* src, int width, int height, int left, int top, int right, int bottom) argument
315 copy_rgb_buffer_from_unlocked( char* _dst, char* raw_data, int unlockedWidth, int width, int height, int top, int left, int bpp) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Drotatingtree.c35 root = &((*root)->left);
39 node->left = NULL;
57 node = node->left;
75 next = node->left;
79 node->left = next->right;
84 pnode = &(node->left);
91 node->right = next->left;
92 next->left = node;
113 result = RotatingTree_Enum(root->left, enumfn, arg);
H A Drotatingtree.h20 rotating_node_t *left; member in struct:rotating_node_s
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A DZLib.c37 UINTN left; local
43 left = *CompressDataLen;
57 if (left > CHUNK)
60 left = left - CHUNK;
64 stream.avail_in = left;
65 left = 0;
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
268 left = (int)(1 << curr);
270 left -= count[curr + drop];
271 if (left <= 0) break;
273 left <<
[all...]
/device/google/cuttlefish_common/guest/hals/hwcomposer/legacy/
H A Dgeometry_utils.cpp24 int left1 = layer1.displayFrame.left;
29 int left2 = layer2.displayFrame.left;
/device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey/
H A Dhikey_private.h40 int hikey_get_partition_size(const char *arg, int left, char *response);
41 int hikey_get_partition_type(const char *arg, int left, char *response);
/device/generic/goldfish/dhcp/server/
H A Dlease.h64 inline bool operator==(const Lease& left, const Lease& right) { argument
65 return left.InterfaceIndex == right.InterfaceIndex &&
66 memcmp(left.MacAddress, right.MacAddress, sizeof(left.MacAddress)) == 0;
/device/google/marlin/camera/QCamera2/HAL/tsMakeuplib/include/
H A Dts_makeup_data.h33 long left; member in struct:__tag_tsrect
/device/linaro/bootloader/arm-trusted-firmware/drivers/io/
H A Dio_block.c176 size_t aligned_length, skip, count, left, padding, block_size; local
204 left = aligned_length;
207 if (left >= buf->length) {
209 * Since left is larger, it's impossible to padding.
238 left = left - (count - skip);
251 count = ops->read(lba, buf->offset, left);
253 count = ops->read(lba, buffer, left);
254 assert(count == left);
255 left
282 size_t aligned_length, skip, count, left, padding, block_size; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
H A Dinfback.c131 left = strm->avail_out; \
142 strm->avail_out = left; \
212 if (left == 0) { \
214 left = state->wsize; \
215 state->whave = left; \
216 if (out(out_desc, put, left)) { \
260 unsigned have, left; /* available input and output */ local
287 left = state->wsize;
346 if (copy > left) copy = left;
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dbuild.c42 ((Junction *)g.left)->jtype = t; \
43 ((Junction *)g.left)->approx = approx; \
44 ((Junction *)g.left)->pFirstSetSymbol = first_set_symbol; \
45 ((Junction *)g.left)->end = (Junction *) g.right; \
49 * g.left points to the sentinel node on a block. i.e. g.left->p1 points to
146 g.left = (Node *) j1; g.right = (Node *) j2;
181 g.left = (Node *) j1; g.right = (Node *) j2;
238 g.left = (Node *) j1; g.right = (Node *) j2;
291 g.left
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
H A Dtransmogrify.h85 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill) argument
89 if (left < 0)
90 left = 0;
94 if (left == 0 && right == 0 && STRINGLIB_CHECK_EXACT(self)) {
106 left + STRINGLIB_LEN(self) + right);
108 if (left)
109 memset(STRINGLIB_STR(u), fill, left); local
110 Py_MEMCPY(STRINGLIB_STR(u) + left,
114 memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self),
124 "Return B left justifie
190 Py_ssize_t marg, left; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
H A Dtransmogrify.h85 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill) argument
89 if (left < 0)
90 left = 0;
94 if (left == 0 && right == 0 && STRINGLIB_CHECK_EXACT(self)) {
106 left + STRINGLIB_LEN(self) + right);
108 if (left)
109 memset(STRINGLIB_STR(u), fill, left); local
110 Py_MEMCPY(STRINGLIB_STR(u) + left,
114 memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self),
124 "Return B left justifie
190 Py_ssize_t marg, left; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
H A Drexpr.c136 result = match(nfa.left, s);
478 g.left = newNode();
480 ArcBetweenGraphNodes(g.left, g.right, label);
493 ArcBetweenGraphNodes(A.right, B.left, Epsilon);
494 g.left = A.left;
508 g.left = newNode();
509 ArcBetweenGraphNodes(g.left, A.left, Epsilon);
510 ArcBetweenGraphNodes(g.left,
[all...]
H A Drexpr.h18 NodePtr left, member in struct:__anon3995
/device/google/marlin/camera/QCamera2/HAL3/
H A DQCamera3CropRegionMapper.cpp120 * @crop_left : x coordinate of top left corner of rectangle
121 * @crop_top : y coordinate of top left corner of rectangle
151 * @crop_left : x coordinate of top left corner of rectangle
152 * @crop_top : y coordinate of top left corner of rectangle
173 LOGD("before bounding left %d, top %d, width %d, height %d",
177 LOGD("after bounding left %d, top %d, width %d, height %d",
187 * @left : x coordinate of top left corner of rectangle
188 * @top : y coordinate of top left corner of rectangle
196 void QCamera3CropRegionMapper::boundToSize(int32_t& left, int32_ argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
H A Dinfback.c122 left = strm->avail_out; \
133 strm->avail_out = left; \
203 if (left == 0) { \
205 left = state->wsize; \
206 state->whave = left; \
207 if (out(out_desc, put, left)) { \
251 unsigned have, left; /* available input and output */ local
278 left = state->wsize;
337 if (copy > left) copy = left;
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DASTBase.h101 void double_link(ASTBase *left, ASTBase *up);
108 ASTBase *left() { return _left; } function in class:ASTDoublyLinkedBase
113 PCCTS_AST *left() { return _left; } function in class:ASTDoublyLinkedBase
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DASTBase.h98 void double_link(ASTBase *left, ASTBase *up);
105 ASTBase *left() { return _left; } function in class:ASTDoublyLinkedBase
110 PCCTS_AST *left() { return _left; } function in class:ASTDoublyLinkedBase
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
H A DLShiftU64.asm18 ; 64-bit left shift function for IA-32
38 ; This routine allows a 64 bit value to be left shifted by 32 bits and
45 ; Count - Number of times to shift left.
49 ; Value shifted left identified by the Count.

Completed in 210 milliseconds

123456