| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/shelf-pack/2.1.1/include/mapbox/ |
| H A D | shelf-pack.hpp | 37 int32_t id1 = -1, in Bin() 38 int32_t w1 = -1, in Bin() 39 int32_t h1 = -1, in Bin() 40 int32_t maxw1 = -1, in Bin() 41 int32_t maxh1 = -1, in Bin() 42 int32_t x1 = -1, in Bin() 43 int32_t y1 = -1 in Bin() 54 int32_t id; 55 int32_t w; 56 int32_t h; [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/boot/ |
| H A D | ecoff.h | 11 int32_t f_timdat; /* time & date stamp */ 12 int32_t f_symptr; /* file pointer to symbolic header */ 13 int32_t f_nsyms; /* sizeof(symbolic hdr) */ 24 int32_t s_paddr; /* physical address, aliased s_nlib */ 25 int32_t s_vaddr; /* virtual address */ 26 int32_t s_size; /* section size */ 27 int32_t s_scnptr; /* file ptr to raw data for section */ 28 int32_t s_relptr; /* file ptr to relocation */ 29 int32_t s_lnnoptr; /* file ptr to gp histogram */ 32 int32_t s_flags; /* flags */ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/mtk-mdp/ |
| H A D | mtk_mdp_ipi.h | 66 int32_t status; 84 int32_t x; 85 int32_t y; 86 int32_t w; 87 int32_t h; 88 int32_t w_stride; 89 int32_t h_stride; 90 int32_t crop_x; 91 int32_t crop_y; 92 int32_t crop_w; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/smart_ptr/detail/ |
| H A D | sp_counted_base_gcc_sparc.hpp | 31 inline int32_t compare_and_swap( int32_t * dest_, int32_t compare_, int32_t swap_ ) in compare_and_swap() 41 inline int32_t atomic_fetch_and_add( int32_t * pw, int32_t dv ) in atomic_fetch_and_add() 49 int32_t r = *pw; in atomic_fetch_and_add() 58 inline void atomic_increment( int32_t * pw ) in atomic_increment() 63 inline int32_t atomic_decrement( int32_t * pw ) in atomic_decrement() 68 inline int32_t atomic_conditional_increment( int32_t * pw ) in atomic_conditional_increment() 76 int32_t r = *pw; in atomic_conditional_increment() 97 int32_t use_count_; // #shared 98 int32_t weak_count_; // #weak + (#shared != 0) 160 return const_cast< int32_t const volatile & >( use_count_ ); in use_count()
|
| H A D | sp_counted_base_aix.hpp | 33 inline void atomic_increment( int32_t* pw ) in atomic_increment() 40 inline int32_t atomic_decrement( int32_t * pw ) in atomic_decrement() 44 int32_t originalValue; in atomic_decrement() 53 inline int32_t atomic_conditional_increment( int32_t * pw ) in atomic_conditional_increment() 58 int32_t tmp = fetch_and_add( pw, 0 ); in atomic_conditional_increment() 73 int32_t use_count_; // #shared 74 int32_t weak_count_; // #weak + (#shared != 0) 136 return fetch_and_add( const_cast<int32_t*>(&use_count_), 0 ); in use_count()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/ |
| H A D | 0013-adb-Support-riscv64.patch | 86 +int32_t android_atomic_acquire_load(volatile const int32_t *ptr) 88 + int32_t value = *ptr; 94 +int32_t android_atomic_release_load(volatile const int32_t *ptr) 101 +void android_atomic_acquire_store(int32_t value, volatile int32_t *ptr) 108 +void android_atomic_release_store(int32_t value, volatile int32_t *ptr) 115 +int android_atomic_cas(int32_t old_value, int32_t new_value, 116 + volatile int32_t *ptr) 122 +int android_atomic_acquire_cas(int32_t old_value, int32_t new_value, 123 + volatile int32_t *ptr) 131 +int android_atomic_release_cas(int32_t old_value, int32_t new_value, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/isdn/mISDN/ |
| H A D | dsp_biquad.h | 16 int32_t gain; 17 int32_t a1; 18 int32_t a2; 19 int32_t b1; 20 int32_t b2; 22 int32_t z1; 23 int32_t z2; 27 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() 41 int32_t y; in biquad2() 42 int32_t z0; in biquad2()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/ |
| H A D | dem_data.hpp | 19 void set(const int32_t x, const int32_t y, const int32_t value) { in set() 20 reinterpret_cast<int32_t*>(image.data.get())[idx(x, y)] = value + 65536; in set() 23 int32_t get(const int32_t x, const int32_t y) const { in get() 24 return reinterpret_cast<const int32_t*>(image.data.get())[idx(x, y)] - 65536; in get() 31 const int32_t dim; 32 const int32_t border; 33 const int32_t stride; 39 size_t idx(const int32_t x, const int32_t y) const { in idx()
|
| H A D | dem_data.cpp | 8 border(std::max<int32_t>(std::ceil(_image.size.height / 2), 1)), in DEMData() 30 for (int32_t y = 0; y < dim; y++) { 31 for (int32_t x = 0; x < dim; x++) { 32 const int32_t i = y * dim + x; 33 const int32_t j = i * 4; 43 for (int32_t x = 0; x < dim; x++) { 79 int32_t _xMin = dx * dim; in backfillBorder() 80 int32_t _xMax = dx * dim + dim; in backfillBorder() 81 int32_t _yMin = dy * dim; in backfillBorder() 82 int32_t _yMax = dy * dim + dim; in backfillBorder() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/ |
| H A D | dpu_hw_util.h | 104 int32_t init_phase_x[DPU_MAX_PLANES]; 105 int32_t phase_step_x[DPU_MAX_PLANES]; 106 int32_t init_phase_y[DPU_MAX_PLANES]; 107 int32_t phase_step_y[DPU_MAX_PLANES]; 160 int32_t num_ext_pxls_lr[DPU_MAX_PLANES]; 161 int32_t num_ext_pxls_tb[DPU_MAX_PLANES]; 167 int32_t left_ftch[DPU_MAX_PLANES]; 168 int32_t right_ftch[DPU_MAX_PLANES]; 169 int32_t top_ftch[DPU_MAX_PLANES]; 170 int32_t btm_ftch[DPU_MAX_PLANES]; [all …]
|
| /OK3568_Linux_fs/external/common_algorithm/misc/include/ |
| H A D | rkdemuxer.h | 40 int32_t s32TotalTime; 42 int32_t s32VideoWidth; 43 int32_t s32VideoHeigh; 45 int32_t s32VideoAvgFrameRate; 46 int32_t s32VideoTimeBaseNum; 47 int32_t s32VideoTimeBaseDen; 50 int32_t s32AudioChannels; 51 int32_t s32AudioSampleRate; 54 int32_t s32AudioTimeBaseNum; 55 int32_t s32AudioTimeBaseDen; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/inc/ |
| H A D | smu9_driver_if.h | 89 int32_t a0; 90 int32_t a1; 91 int32_t a2; 100 int32_t m1; 101 int32_t m2; 102 int32_t b; 388 int32_t VFT0_m1; /* Q8.24 */ 389 int32_t VFT0_m2; /* Q12.12 */ 390 int32_t VFT0_b; /* Q32 */ 392 int32_t VFT1_m1; /* Q8.16 */ [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/include/ |
| H A D | arm_acle.h | 177 typedef int32_t int16x2_t; 179 typedef int32_t int8x4_t; 378 __extension__ extern __inline int32_t 385 __extension__ extern __inline int32_t 525 __extension__ extern __inline int32_t 527 __smlad (int16x2_t __a, int16x2_t __b, int32_t __c) in __smlad() 532 __extension__ extern __inline int32_t 534 __smladx (int16x2_t __a, int16x2_t __b, int32_t __c) in __smladx() 539 __extension__ extern __inline int32_t 541 __smlsd (int16x2_t __a, int16x2_t __b, int32_t __c) in __smlsd() [all …]
|
| /OK3568_Linux_fs/kernel/include/xen/interface/io/ |
| H A D | fbif.h | 46 int32_t x; /* source x */ 47 int32_t y; /* source y */ 48 int32_t width; /* rect width */ 49 int32_t height; /* rect height */ 60 int32_t width; /* width in pixels */ 61 int32_t height; /* height in pixels */ 62 int32_t stride; /* stride in bytes */ 63 int32_t depth; /* depth in bits */ 64 int32_t offset; /* start offset within framebuffer */ 112 int32_t width; /* width of the framebuffer (in pixels) */ [all …]
|
| H A D | kbdif.h | 272 int32_t rel_x; 273 int32_t rel_y; 274 int32_t rel_z; 328 int32_t abs_x; 329 int32_t abs_y; 330 int32_t rel_z; 486 int32_t abs_x; /* absolute X position, pixels */ 487 int32_t abs_y; /* absolute Y position, pixels */
|
| /OK3568_Linux_fs/kernel/sound/soc/codecs/aw87xxx/ |
| H A D | aw_acf_bin.h | 83 int32_t a_id; /* acf file ID 0xa15f908 */ 87 int32_t author_id; /* author id */ 88 int32_t ddt_size; /* sub section table entry size */ 89 int32_t dde_num; /* sub section table entry num */ 90 int32_t ddt_offset; /* sub section table offset in file */ 91 int32_t hdr_version; /* sub section table version */ 92 int32_t reserve[3]; /* Reserved Bits */ 96 int32_t type; /* dde type id */ 102 int32_t data_type; /* data type id */ 103 int32_t data_size; /* dde data size in block */ [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/IspFec/include_prv/ |
| H A D | RkIspFecGenMesh.h | 33 int32_t init(int32_t srcWidth, int32_t srcHeight, int32_t dstWidth, int32_t dstHeight, 36 int32_t deinit(); 37 int32_t genMesh(int32_t level); 62 int32_t mLevel {100};
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/IspFec/src/ |
| H A D | RkIspFecGenMesh.cpp | 24 int32_t 25 RkIspFecGenMesh::init(int32_t srcWidth, int32_t srcHeight, in init() 26 int32_t dstWidth, int32_t dstHeight, in init() 32 int32_t ret = -1; in init() 90 int32_t RkIspFecGenMesh::deinit() in deinit() 102 int32_t RkIspFecGenMesh::genMesh(int32_t level) in genMesh() 104 int32_t ret = -1; in genMesh()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | tile_cover.cpp | 16 using ScanLine = const std::function<void(int32_t x0, int32_t x1, int32_t y)>; 37 static void scanSpans(edge e0, edge e1, int32_t ymin, int32_t ymax, ScanLine scanLine) { in scanSpans() 53 for (int32_t y = y0; y < y1; y++) { in scanSpans() 61 …Point<double>& a, const Point<double>& b, const Point<double>& c, int32_t ymin, int32_t ymax, Scan… in scanTriangle() 87 int32_t z) { in tileCover() 88 const int32_t tiles = 1 << z; in tileCover() 91 int32_t x, y; in tileCover() 97 auto scanLine = [&](int32_t x0, int32_t x1, int32_t y) { in tileCover() 98 int32_t x; in tileCover() 133 int32_t coveringZoomLevel(double zoom, style::SourceType type, uint16_t size) { in coveringZoomLevel() [all …]
|
| /OK3568_Linux_fs/kernel/sound/soc/codecs/aw883xx/ |
| H A D | aw_calib.h | 32 #define AW_TE_CACL_VALUE(te, coil_alpha) ((int32_t)(((int32_t)te << 18) / (coil_alpha))) 33 #define AW_RE_REALTIME_VALUE(re_cacl, te_cacl) ((re_cacl) + (int32_t)((int64_t)((te_cacl) * (re_cac… 108 #define AW_IOCTL_GET_F0 _IOWR(AW_IOCTL_MAGIC, 5, int32_t) 109 #define AW_IOCTL_SET_CALI_RE _IOWR(AW_IOCTL_MAGIC, 6, int32_t) 111 #define AW_IOCTL_GET_RE _IOWR(AW_IOCTL_MAGIC, 17, int32_t) 112 #define AW_IOCTL_GET_CALI_F0 _IOWR(AW_IOCTL_MAGIC, 18, int32_t) 113 #define AW_IOCTL_GET_REAL_R0 _IOWR(AW_IOCTL_MAGIC, 19, int32_t) 114 #define AW_IOCTL_GET_TE _IOWR(AW_IOCTL_MAGIC, 20, int32_t) 139 int aw_cali_svc_get_dev_te(struct aw_cali_desc *cali_desc, int32_t *te);
|
| /OK3568_Linux_fs/kernel/drivers/video/rockchip/rga/ |
| H A D | rga.h | 245 int32_t sina; /* dst angle default value 0 16.16 scan from table */ 246 int32_t cosa; /* dst angle default value 0 16.16 scan from table */ 324 int32_t tile_xoff; 325 int32_t tile_yoff; 327 int32_t tile_temp_xstart; 328 int32_t tile_temp_ystart; 331 int32_t x_dx; 332 int32_t x_dy; 333 int32_t y_dx; 334 int32_t y_dy; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/dc/inc/hw/ |
| H A D | opp.h | 170 int32_t left_index; 171 int32_t right_index; 225 int32_t adjust_divider; 226 int32_t grph_cont; 227 int32_t grph_sat; 228 int32_t grph_bright; 229 int32_t grph_hue; 235 int32_t hw_default; 236 int32_t min; 237 int32_t max; [all …]
|
| /OK3568_Linux_fs/buildroot/package/qt5/qt5webkit/ |
| H A D | 0001-WinCairo-PlayStation-ICU-68.1-no-longer-exposes-FALS.patch | 50 …arget, UChar* targetLimit, const char*& source, const char* sourceLimit, int32_t* offsets, bool fl… 56 // Ensure chunk offset is well formed if computed offset exceeds int32_t range. 57 ASSERT(offset < std::numeric_limits<int32_t>::max()); 58 …text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : … 71 // Ensure chunk offset is well formed if computed offset exceeds int32_t range. 72 ASSERT(offset < std::numeric_limits<int32_t>::max()); 73 …text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : … 92 uText->chunkOffset = static_cast<int32_t>(index - uText->chunkNativeStart); 98 uText->chunkOffset = static_cast<int32_t>(index - uText->chunkNativeStart); 105 uText->chunkOffset = static_cast<int32_t>(index - uText->chunkNativeStart); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/cxgb3/ |
| H A D | cxgb3_ioctl.h | 88 int32_t txq_size[3]; 89 int32_t rspq_size; 90 int32_t fl_size[2]; 91 int32_t intr_lat; 92 int32_t polling; 93 int32_t lro; 94 int32_t cong_thres; 95 int32_t vector; 96 int32_t qnum;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | bidi.cpp | 33 const int32_t outputLength = in applyArabicShaping() 34 …u_shapeArabic(mbgl::utf16char_cast<const UChar*>(input.c_str()), static_cast<int32_t>(input.size()… in applyArabicShaping() 44 …u_shapeArabic(mbgl::utf16char_cast<const UChar*>(input.c_str()), static_cast<int32_t>(input.size()… in applyArabicShaping() 57 int32_t paragraphCount = ubidi_countParagraphs(impl->bidiText); in mergeParagraphLineBreaks() 58 for (int32_t i = 0; i < paragraphCount; i++) { in mergeParagraphLineBreaks() 60 int32_t paragraphEndIndex; in mergeParagraphLineBreaks() 95 …l->bidiText, mbgl::utf16char_cast<const UChar*>(input.c_str()), static_cast<int32_t>(input.size()), in processText() 107 …ubidi_setLine(impl->bidiText, static_cast<int32_t>(start), static_cast<int32_t>(end), impl->bidiLi… in getLine() 116 const int32_t outputLength = ubidi_getProcessedLength(impl->bidiLine); in getLine()
|