Searched defs:depth (Results 1 - 25 of 36) sorted by relevance

12

/device/generic/goldfish-opengl/system/GLESv2_enc/
H A DGL2EncoderUtils.cpp32 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack) argument
36 return ctx->state()->pixelDataSize(width, height, depth, format, type, pack);
H A DGLESv2Validation.cpp355 GLsizei compressedTexImageSize(GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) { argument
356 GLsizei base_size = ceildiv(width, 4) * ceildiv(height, 4) * depth;
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
H A Dfdt_wip.c99 int depth = 0; local
101 while ((offset >= 0) && (depth >= 0))
102 offset = fdt_next_node(fdt, offset, &depth);
H A Dfdt.c161 int fdt_next_node(const void *fdt, int offset, int *depth) argument
180 if (depth)
181 (*depth)++;
185 if (depth && ((--(*depth)) < 0))
191 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
203 int depth = 0; local
205 offset = fdt_next_node(fdt, offset, &depth);
206 if (offset < 0 || depth != 1)
214 int depth local
[all...]
H A Dfdt_ro.c135 int depth; local
139 for (depth = 0;
140 (offset >= 0) && (depth >= 0);
141 offset = fdt_next_node(fdt, offset, &depth))
142 if ((depth == 1)
146 if (depth < 0)
361 int offset, depth, namelen; local
369 for (offset = 0, depth = 0;
371 offset = fdt_next_node(fdt, offset, &depth)) {
372 while (pdepth > depth) {
413 int offset, depth; local
[all...]
/device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
H A Dfdt.c162 int fdt_next_node(const void *fdt, int offset, int *depth) argument
181 if (depth)
182 (*depth)++;
186 if (depth && ((--(*depth)) < 0))
192 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
204 int depth = 0; local
206 offset = fdt_next_node(fdt, offset, &depth);
207 if (offset < 0 || depth != 1)
215 int depth local
[all...]
H A Dfdt_wip.c120 int depth = 0; local
122 while ((offset >= 0) && (depth >= 0))
123 offset = fdt_next_node(fdt, offset, &depth);
H A Dfdt_ro.c161 int depth; local
165 for (depth = 0;
166 (offset >= 0) && (depth >= 0);
167 offset = fdt_next_node(fdt, offset, &depth))
168 if ((depth == 1)
172 if (depth < 0)
392 int offset, depth, namelen; local
400 for (offset = 0, depth = 0;
402 offset = fdt_next_node(fdt, offset, &depth)) {
403 while (pdepth > depth) {
444 int offset, depth; local
[all...]
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/
H A DEblCmdFdt.c115 UINTN depth; local
119 depth = 0;
139 Print(L"%*s%a {\n", depth * shift, L" ", s);
141 depth++;
146 depth--;
148 Print(L"%*s};\n", depth * shift, L" ");
153 Print(L"%*s// [NOP]\n", depth * shift, L" ");
158 Print(L"%*s ** Unknown tag 0x%08x\n", depth * shift, L" ", tag);
169 Print(L"%*s%a", depth * shift, L" ", s);
/device/google/cuttlefish_common/host/frontend/vnc_server/
H A Dvnc_client_connection.h49 std::uint8_t depth; member in struct:cvd::vnc::VncClientConnection::PixelFormat
153 std::uint8_t{8}, // depth
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Ddumpnode.c50 void dumppred1(int depth,Predicate *p) argument
52 void dumppred1(depth,p)
53 int depth;
60 for (i=0; i<depth ; i++) {
91 for (i=0; i<depth ; i++) {
96 for (i=0; i<depth ; i++) {
105 dumppred1(depth+1,p->down);
108 dumppred1(depth,p->right);
H A Dfset2.c128 /* check the depth of each primary sibling to see that it is exactly
1048 * Only check s to the depth of e. In other words, 'e' can be a shorter
1072 if ( e->down == NULL ) return 1; /* if s is matched to depth of e return */
1380 /* now add the chain of tokens at depth k */
1790 Tree *tTrunc(Tree *t,int depth) argument
1792 Tree *tTrunc(t,depth)
1798 require ( ! (t == NULL && depth > 0),"tree too short");
1800 if (depth == 0) return NULL;
1803 u=tTrunc(t->down,depth);
1806 u->down=tTrunc(t->down,depth
1841 int depth; local
1944 int depth; local
2156 int depth; local
[all...]
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/
H A DShellDumpFdt.c100 UINTN depth; local
121 depth = 0;
140 Print (L"%*s%a {\n", depth * shift, L" ", s);
142 depth++;
147 depth--;
149 Print (L"%*s};\n", depth * shift, L" ");
154 Print (L"%*s// [NOP]\n", depth * shift, L" ");
159 Print (L"%*s ** Unknown tag 0x%08x\n", depth * shift, L" ", tag);
170 Print (L"%*s%a", depth * shift, L" ", s);
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLESTextureUtils.cpp210 GLsizei width, GLsizei height, GLsizei depth,
225 ALOGV("%s: input idim %d %d %d w p h %d %d %d:", __FUNCTION__, width, height, depth, inputWidth, inputPitch, inputHeight);
228 int endVal = startVal + inputPitch * inputHeight * depth;
238 GLsizei width, GLsizei height, GLsizei depth,
249 width, height, depth,
263 GLsizei width, GLsizei height, GLsizei depth,
274 width, height, depth,
209 computeTextureStartEnd( GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int unpackAlignment, int unpackRowLength, int unpackImageHeight, int unpackSkipPixels, int unpackSkipRows, int unpackSkipImages, int* start, int* end) argument
237 computeTotalImageSize( GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int unpackAlignment, int unpackRowLength, int unpackImageHeight, int unpackSkipPixels, int unpackSkipRows, int unpackSkipImages) argument
262 computeNeededBufferSize( GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int unpackAlignment, int unpackRowLength, int unpackImageHeight, int unpackSkipPixels, int unpackSkipRows, int unpackSkipImages) argument
H A DGLClientState.cpp592 size_t GLClientState::pixelDataSize(GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack) const argument
594 if (width <= 0 || height <= 0 || depth <= 0) return 0;
613 width, height, depth,
623 size_t GLClientState::pboNeededDataSize(GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack) const argument
625 if (width <= 0 || height <= 0 || depth <= 0) return 0;
644 width, height, depth,
877 void GLClientState::setBoundTextureDims(GLenum target, GLsizei level, GLsizei width, GLsizei height, GLsizei depth) { argument
887 GLsizei curr_depth = depth;
911 texrec->dims->depths[level] = depth;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dtraceback.c239 long depth = 0; local
242 depth++;
246 if (depth <= limit) {
253 depth--;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dtraceback.c239 long depth = 0; local
242 depth++;
246 if (depth <= limit) {
253 depth--;
H A Dmarshal.c67 int depth; member in struct:__anon3522
196 p->depth++;
198 if (p->depth > MAX_MARSHAL_STACK_DEPTH) {
323 p->depth--;
336 p->depth--;
348 p->depth--;
355 p->depth--;
401 p->depth--;
408 p->depth--;
418 p->depth
[all...]
/device/google/contexthub/util/common/
H A DJSONObject.cpp559 AString JSONValue::toString(size_t depth, bool indentFirstLine) const { argument
605 out.append(mValue.mObjectOrArray->internalToString(depth + 1));
607 out.append(kIndent, 2 * depth);
617 out.insert(kIndent, 2 * depth, 0);
647 AString JSONCompound::toString(size_t depth, bool indentFirstLine) const { argument
655 return val.toString(depth, indentFirstLine);
682 AString JSONObject::internalToString(size_t depth) const {
691 out.append(kIndent, 2 * depth);
696 out.append(mValues.valueAt(i).toString(depth + 1, false));
734 AString JSONArray::internalToString(size_t depth) cons
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
H A Dpytree.py220 def depth(self): member in class:Base
223 return 1 + self.parent.depth()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Ddeflate.h213 uch depth[2*L_CODES+1]; member in struct:internal_state
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Ddeflate.h210 uch depth[2*L_CODES+1]; member in struct:internal_state
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
H A DX11GraphicsWindow.c48 int depth; member in struct:__anon5443
110 Drv->depth, ZPixmap, NULL, &Drv->xshm_info,
198 if (Drv->depth > 16) {
200 } else if (Drv->depth > 8) {
208 Drv->display, Drv->visual, Drv->depth,
962 Drv->depth = DefaultDepth (Drv->display, Drv->screen);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dmarshal.c67 int depth; member in struct:__anon2879
196 p->depth++;
198 if (p->depth > MAX_MARSHAL_STACK_DEPTH) {
323 p->depth--;
336 p->depth--;
348 p->depth--;
355 p->depth--;
401 p->depth--;
408 p->depth--;
418 p->depth
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
H A Dmarshal.c66 int depth; member in struct:__anon3178
145 (p)->depth--; \
196 p->depth--;
222 p->depth++;
224 if (p->depth > MAX_MARSHAL_STACK_DEPTH) {
349 p->depth--;
366 p->depth--;
412 p->depth--;
419 p->depth--;
429 p->depth
[all...]

Completed in 419 milliseconds

12