Home
last modified time | relevance | path

Searched refs:getSize (Results 1 – 25 of 35) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dcollision_index.cpp29 …, collisionGrid(transformState.getSize().width + 2 * viewportPadding, transformState.getSize().hei… in CollisionIndex()
30 …, ignoredGrid(transformState.getSize().width + 2 * viewportPadding, transformState.getSize().heigh… in CollisionIndex()
31 , screenRightBoundary(transformState.getSize().width + viewportPadding) in CollisionIndex()
32 , screenBottomBoundary(transformState.getSize().height + viewportPadding) in CollisionIndex()
33 , gridRightBoundary(transformState.getSize().width + 2 * viewportPadding) in CollisionIndex()
34 , gridBottomBoundary(transformState.getSize().height + 2 * viewportPadding) in CollisionIndex()
320 (((p[0] / p[3] + 1) / 2) * transformState.getSize().width) + viewportPadding, in projectAndGetPerspectiveRatio()
321 (((-p[1] / p[3] + 1) / 2) * transformState.getSize().height) + viewportPadding in projectAndGetPerspectiveRatio()
334 (((p[0] / p[3] + 1) / 2) * transformState.getSize().width) + viewportPadding, in projectPoint()
335 (((-p[1] / p[3] + 1) / 2) * transformState.getSize().height) + viewportPadding in projectPoint()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Ddrm_buffer.cpp92 size_t DrmBuffer::getSize() { return getSize(0); } in getSize() function in XCam::DrmBuffer
94 size_t DrmBuffer::getSize(unsigned int plane) { return dma_bufs_.at(plane)->getSize(); } in getSize() function in XCam::DrmBuffer
H A Ddrm_buffer.h54 size_t getSize();
59 size_t getSize(unsigned int plane);
H A Ddma_buffer.h47 size_t getSize();
H A Ddma_buffer.cpp105 size_t DmaBuffer::getSize() { return size_; } in getSize() function in XCam::DmaBuffer
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/dibbler/dibbler/
H A Ddibbler_fix_getSize_crash.patch32 @@ -69,10 +69,15 @@ int TMsg::getSize()
39 - pktsize += (*opt)->getSize();
42 + pktsize += (*opt)->getSize();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dsymbol_projection.cpp68 matrix::scale(m, m, state.getSize().width / 2.0, -(state.getSize().height / 2.0), 1.0); in getLabelPlaneMatrix()
90 matrix::scale(m, m, 2.0 / state.getSize().width, 2.0 / state.getSize().height, 1.0); in getGlCoordMatrix()
369 …array<double, 2> clippingBuffer = {{ 256.0 / state.getSize().width * 2.0 + 1.0, 256.0 / state.getS… in reprojectLineLabels()
414 …, labelPlaneMatrix, glCoordMatrix, dynamicVertexArray, anchorPoint, state.getSize().aspectRatio()); in reprojectLineLabels()
420 … labelPlaneMatrix, glCoordMatrix, dynamicVertexArray, anchorPoint, state.getSize().aspectRatio()) … in reprojectLineLabels()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/map/
H A Dmap_snapshotter.cpp32 Size getSize() const;
141 Size MapSnapshotter::Impl::getSize() const { in getSize() function in mbgl::MapSnapshotter::Impl
142 return map.getSize(); in getSize()
201 Size MapSnapshotter::getSize() const { in getSize() function in mbgl::MapSnapshotter
202 return impl->actor().ask(&Impl::getSize).get(); in getSize()
H A Dmap_snapshotter.hpp46 Size getSize() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Doffscreen_texture.cpp52 const Size& getSize() const { in getSize() function in mbgl::OffscreenTexture::Impl
94 const Size& OffscreenTexture::getSize() const { in getSize() function in mbgl::OffscreenTexture
95 return impl->getSize(); in getSize()
H A Doffscreen_texture.hpp31 const Size& getSize() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_custom_layer.cpp68 parameters.width = state.getSize().width; in render()
69 parameters.height = state.getSize().height; in render()
H A Drender_circle_layer.cpp159 projectQueryGeometry(translatedQueryGeometry, posMatrix, transformState.getSize()); in queryIntersectsFeature()
165 …transformedPoint = alignWithMap ? point : projectPoint(point, posMatrix, transformState.getSize()); in queryIntersectsFeature()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/poppler/poppler/
H A D0001-JBIG2Stream-Fix-crash-on-broken-file.patch31 - numSyms += ((JBIG2SymbolDict *)seg)->getSize();
32 + const unsigned int segSize = ((JBIG2SymbolDict *)seg)->getSize();
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/
H A DZip.c603 long getSize = (compRemaining > (long)sizeof(readBuf)) ? in processDeflatedEntry() local
606 getSize, compRemaining); in processDeflatedEntry()
608 int cc = read(pArchive->fd, readBuf, getSize); in processDeflatedEntry()
609 if (cc != (int) getSize) { in processDeflatedEntry()
610 LOGW("inflate read failed (%d vs %ld)\n", cc, getSize); in processDeflatedEntry()
614 compRemaining -= getSize; in processDeflatedEntry()
617 zstream.avail_in = getSize; in processDeflatedEntry()
/OK3568_Linux_fs/external/recovery/minzip/
H A DZip.c602 long getSize = (compRemaining > (long)sizeof(readBuf)) ? in processDeflatedEntry() local
605 getSize, compRemaining); in processDeflatedEntry()
607 int cc = read(pArchive->fd, readBuf, getSize); in processDeflatedEntry()
608 if (cc != (int) getSize) { in processDeflatedEntry()
609 LOGW("inflate read failed (%d vs %ld)\n", cc, getSize); in processDeflatedEntry()
613 compRemaining -= getSize; in processDeflatedEntry()
616 zstream.avail_in = getSize; in processDeflatedEntry()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dpaint_parameters.cpp47 pixelsToGLUnits = {{ 2.0f / state.getSize().width, -2.0f / state.getSize().height }}; in PaintParameters()
H A Dtile_pyramid.cpp210 std::max((float)parameters.transformState.getSize().width / tileSize, 1.0f) * in update()
211 std::max((float)parameters.transformState.getSize().height / tileSize, 1.0f) * in update()
295 transformState, 0, { p.x, transformState.getSize().height - p.y }).p); in queryRenderedFeatures()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dtile_cache.hpp18 size_t getSize() const { return size; }; in getSize() function in mbgl::TileCache
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/
H A Dline_atlas.hpp45 Size getSize() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/gl/
H A Dheadless_frontend.hpp30 Size getSize() const;
H A Dheadless_frontend.cpp45 Size HeadlessFrontend::getSize() const { in getSize() function in mbgl::HeadlessFrontend
/OK3568_Linux_fs/external/rockit/tgi/sdk/include/
H A DRTAVShellBuffer.h35 virtual UINT32 getSize() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform_state.hpp31 Size getSize() const;
H A Dmap.cpp381 Size size = transform.getState().getSize(); in cameraForLatLngs()
464 Size size = shallow.getState().getSize(); in latLngBoundsForCamera()
541 Size Map::getSize() const { in getSize() function in mbgl::Map
542 return impl->transform.getState().getSize(); in getSize()

12