Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 243) sorted by relevance

12345678910

/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
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; \
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 = (Node *) j1; g.right = (Node *) j2;
317 require(g1.left != NULL, "Or: invalid graph");
318 require(g2.left != NULL && g2.right != NULL, "Or: invalid graph");
[all …]
/device/generic/goldfish/network/wifi_forwarder/
Dframe_id.h49 inline bool operator==(const FrameId& left, const FrameId& right) {
50 return left.cookie == right.cookie && left.transmitter == right.transmitter;
53 inline bool operator<(const FrameId& left, const FrameId& right) {
54 if (left.cookie < right.cookie) {
57 if (left.cookie > right.cookie) {
60 return memcmp(left.transmitter.addr,
62 sizeof(left.transmitter.addr)) < 0;
Dmacaddress.h66 inline bool operator==(const MacAddress& left, const MacAddress& right) {
67 return memcmp(left.addr, right.addr, ETH_ALEN) == 0;
70 inline bool operator!=(const MacAddress& left, const MacAddress& right) {
71 return memcmp(left.addr, right.addr, ETH_ALEN) != 0;
/device/linaro/bootloader/arm-trusted-firmware/drivers/io/
Dio_block.c176 size_t aligned_length, skip, count, left, padding, block_size; in block_read() local
204 left = aligned_length; in block_read()
207 if (left >= buf->length) { in block_read()
238 left = left - (count - skip); in block_read()
251 count = ops->read(lba, buf->offset, left); in block_read()
253 count = ops->read(lba, buffer, left); in block_read()
254 assert(count == left); in block_read()
255 left = left - (skip + padding); in block_read()
256 cur->file_pos += left; in block_read()
264 left); in block_read()
[all …]
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.h33 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);
43 int left, int top, int right, int bottom);
46 int width, int height, int top, int left,
DFormatConversions.cpp90 int left, int top, int right, int bottom) { in rgb565_to_yv12() argument
108 for (int i = left; i <= right; ++i) { in rgb565_to_yv12()
130 int left, int top, int right, int bottom) { in rgb888_to_yv12() argument
164 for (int i = left; i <= right; ++i) { in rgb888_to_yv12()
198 int left, int top, int right, int bottom) { in rgb888_to_yuv420p() argument
216 for (int i = left; i <= right; ++i) { in rgb888_to_yuv420p()
235 int left, int top, int right, int bottom) { in yv12_to_rgb565() argument
253 for (int i = left; i <= right; ++i) { in yv12_to_rgb565()
272 rgb_ptr[i-left] = rgb1; in yv12_to_rgb565()
280 int left, int top, int right, int bottom) { in yv12_to_rgb888() argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Drotatingtree.c35 root = &((*root)->left); in RotatingTree_Add()
39 node->left = NULL; in RotatingTree_Add()
57 node = node->left; in RotatingTree_Get()
75 next = node->left; in RotatingTree_Get()
79 node->left = next->right; in RotatingTree_Get()
84 pnode = &(node->left); in RotatingTree_Get()
91 node->right = next->left; in RotatingTree_Get()
92 next->left = node; in RotatingTree_Get()
113 result = RotatingTree_Enum(root->left, enumfn, arg); in RotatingTree_Enum()
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
DZLib.c37 UINTN left; in GzipDecompress() local
43 left = *CompressDataLen; in GzipDecompress()
57 if (left > CHUNK) in GzipDecompress()
60 left = left - CHUNK; in GzipDecompress()
64 stream.avail_in = left; in GzipDecompress()
65 left = 0; in GzipDecompress()
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 <<= 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dtransmogrify.h85 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill) in pad() argument
89 if (left < 0) in pad()
90 left = 0; in pad()
94 if (left == 0 && right == 0 && STRINGLIB_CHECK_EXACT(self)) { in pad()
106 left + STRINGLIB_LEN(self) + right); in pad()
108 if (left) in pad()
109 memset(STRINGLIB_STR(u), fill, left); in pad()
110 Py_MEMCPY(STRINGLIB_STR(u) + left, in pad()
114 memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self), in pad()
190 Py_ssize_t marg, left; in stringlib_center() local
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dtransmogrify.h85 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill) in pad() argument
89 if (left < 0) in pad()
90 left = 0; in pad()
94 if (left == 0 && right == 0 && STRINGLIB_CHECK_EXACT(self)) { in pad()
106 left + STRINGLIB_LEN(self) + right); in pad()
108 if (left) in pad()
109 memset(STRINGLIB_STR(u), fill, left); in pad()
110 Py_MEMCPY(STRINGLIB_STR(u) + left, in pad()
114 memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self), in pad()
190 Py_ssize_t marg, left; in stringlib_center() local
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
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, B.left, Epsilon);
528 g.left = newNode();
532 ArcBetweenGraphNodes(g.left, g.right, *s++);
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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 <<= 1;
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;
350 left -= copy;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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 <<= 1;
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;
341 left -= copy;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt72 LeftShift: (left, right)
73 RightShift: (left, right)
74 Add: (left, right)
75 Sub: (left, right)
76 Mul: (left, right)
77 Div: (left, right)
78 Mod: (left, right)
79 Power: (left, right)
80 FloorDiv: (left, right)
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/doc/
Dlua.css25 padding-left: 0.8em ;
33 padding-left: 0.5em ;
34 border-left: solid #D0D0FF 1em ;
38 padding-left: 0px ;
39 border-left: none ;
93 padding-left: 20px ;
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/
DFrontPageVfr.Vfr51 align left;
56 align left;
66 align left;
76 // align left;
86 // align left;
96 // align left;
101 // align left;
/device/linaro/bootloader/edk2/MdeModulePkg/Application/UiApp/
DFrontPageVfr.Vfr35 align left;
40 align left;
50 align left;
60 align left;
70 align left;
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
Dast.c301 u->left = NULL;
306 if ( u->right!=NULL ) u->right->left = u;
333 zzdouble_link(AST *t, AST *left, AST *up) in zzdouble_link() argument
335 zzdouble_link(t, left, up) in zzdouble_link()
336 AST *t, *left, *up; in zzdouble_link()
340 t->left = left;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
Dast.c301 u->left = NULL;
306 if ( u->right!=NULL ) u->right->left = u;
333 zzdouble_link(AST *t, AST *left, AST *up) in zzdouble_link() argument
335 zzdouble_link(t, left, up) in zzdouble_link()
336 AST *t, *left, *up; in zzdouble_link()
340 t->left = left;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbufferobject.c469 buffer_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right) in buffer_slice() argument
475 if ( left < 0 ) in buffer_slice()
476 left = 0; in buffer_slice()
481 if ( right < left ) in buffer_slice()
482 right = left; in buffer_slice()
483 return PyString_FromStringAndSize((char *)ptr + left, in buffer_slice()
484 right - left); in buffer_slice()
594 buffer_ass_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right, PyObject *other) in buffer_ass_slice() argument
628 if ( left < 0 ) in buffer_ass_slice()
629 left = 0; in buffer_ass_slice()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbufferobject.c479 buffer_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right) in buffer_slice() argument
485 if ( left < 0 ) in buffer_slice()
486 left = 0; in buffer_slice()
491 if ( right < left ) in buffer_slice()
492 right = left; in buffer_slice()
493 return PyString_FromStringAndSize((char *)ptr + left, in buffer_slice()
494 right - left); in buffer_slice()
604 buffer_ass_slice(PyBufferObject *self, Py_ssize_t left, Py_ssize_t right, PyObject *other) in buffer_ass_slice() argument
638 if ( left < 0 ) in buffer_ass_slice()
639 left = 0; in buffer_ass_slice()
[all …]
/device/google/cuttlefish/guest/hals/hwcomposer/common/
Dgeometry_utils.cpp25 int left1 = layer1.displayFrame.left; in LayersOverlap()
30 int left2 = layer2.displayFrame.left; in LayersOverlap()

12345678910