| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | make_property_setters.hpp | 24 std::unordered_map<std::string, PropertySetter> result; in makeLayoutPropertySetters() local 26 result["visibility"] = &setVisibility; in makeLayoutPropertySetters() 29 … result["line-cap"] = &setProperty<LineLayer, PropertyValue<LineCapType>, &LineLayer::setLineCap>; in makeLayoutPropertySetters() 30 …result["line-join"] = &setProperty<LineLayer, DataDrivenPropertyValue<LineJoinType>, &LineLayer::s… in makeLayoutPropertySetters() 31 …result["line-miter-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineMite… in makeLayoutPropertySetters() 32 …result["line-round-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineRoun… in makeLayoutPropertySetters() 34 …result["symbol-placement"] = &setProperty<SymbolLayer, PropertyValue<SymbolPlacementType>, &Symbol… in makeLayoutPropertySetters() 35 …result["symbol-spacing"] = &setProperty<SymbolLayer, PropertyValue<float>, &SymbolLayer::setSymbol… in makeLayoutPropertySetters() 36 …result["symbol-avoid-edges"] = &setProperty<SymbolLayer, PropertyValue<bool>, &SymbolLayer::setSym… in makeLayoutPropertySetters() 37 …result["icon-allow-overlap"] = &setProperty<SymbolLayer, PropertyValue<bool>, &SymbolLayer::setIco… in makeLayoutPropertySetters() [all …]
|
| /OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/ |
| H A D | Bits.h | 27 unsigned short result; in get2BE() local 29 result = *pSrc++ << 8; in get2BE() 30 result |= *pSrc++; in get2BE() 32 return result; in get2BE() 40 unsigned int result; in get4BE() local 42 result = *pSrc++ << 24; in get4BE() 43 result |= *pSrc++ << 16; in get4BE() 44 result |= *pSrc++ << 8; in get4BE() 45 result |= *pSrc++; in get4BE() 47 return result; in get4BE() [all …]
|
| /OK3568_Linux_fs/external/recovery/minzip/ |
| H A D | Bits.h | 27 unsigned short result; in get2BE() local 29 result = *pSrc++ << 8; in get2BE() 30 result |= *pSrc++; in get2BE() 32 return result; in get2BE() 40 unsigned int result; in get4BE() local 42 result = *pSrc++ << 24; in get4BE() 43 result |= *pSrc++ << 16; in get4BE() 44 result |= *pSrc++ << 8; in get4BE() 45 result |= *pSrc++; in get4BE() 47 return result; in get4BE() [all …]
|
| /OK3568_Linux_fs/kernel/lib/crypto/ |
| H A D | curve25519-selftest.c | 11 u8 result[CURVE25519_KEY_SIZE]; member 24 .result = { 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1, 39 .result = { 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1, 51 .result = { 0x3c, 0x77, 0x77, 0xca, 0xf9, 0x97, 0xb2, 0x64, 63 .result = { 0xb3, 0x2d, 0x13, 0x62, 0xc2, 0x48, 0xd6, 0x2f, 78 .result = { 0xc3, 0xda, 0x55, 0x37, 0x9d, 0xe9, 0xc6, 0x90, 87 .result = { 0 }, 96 .result = { 0 }, 108 .result = { 0x77, 0x52, 0xb6, 0x18, 0xc1, 0x2d, 0x48, 0xd2, 123 .result = { 0x5a, 0xdf, 0xaa, 0x25, 0x86, 0x8e, 0x32, 0x3d, [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | pkgdata.py | 24 result = runCmd('oe-pkgdata-util lookup-pkg "zlib busybox"') 25 self.assertEqual(result.output, 'libz1\nbusybox') 26 result = runCmd('oe-pkgdata-util lookup-pkg zlib-dev') 27 self.assertEqual(result.output, 'libz-dev') 28 result = runCmd('oe-pkgdata-util lookup-pkg nonexistentpkg', ignore_status=True) 29 self.assertEqual(result.status, 1, "Status different than 1. output: %s" % result.output) 30 …self.assertEqual(result.output, 'ERROR: The following packages could not be found: nonexistentpkg') 32 result = runCmd('oe-pkgdata-util lookup-pkg -r "libz1 busybox"') 33 self.assertEqual(result.output, 'zlib\nbusybox') 34 result = runCmd('oe-pkgdata-util lookup-pkg -r libz-dev') [all …]
|
| H A D | bblogging.py | 17 result = bitbake("logging-test -c shelltest -f", ignore_status = True) 18 self.assertIn("ERROR: Logfile of failure stored in:", result.output) 19 self.assertNotIn("This is shell stdout", result.output) 20 self.assertNotIn("This is shell stderr", result.output) 25 result = bitbake("logging-test -c shelltest -f", ignore_status = True) 26 self.assertIn("ERROR: Logfile of failure stored in:", result.output) 27 self.assertCount(result.output, "This is shell stdout", 1) 28 self.assertCount(result.output, "This is shell stderr", 1) 33 result = bitbake("logging-test -c shelltest -f -v", ignore_status = True) 34 self.assertIn("ERROR: Logfile of failure stored in:", result.output) [all …]
|
| H A D | bblayers.py | 16 result = runCmd('bitbake-layers layerindex-show-depends meta-poky') 17 find_in_contents = re.search("openembedded-core", result.output) 18 … listed at this step. bitbake-layers layerindex-show-depends meta-poky output: %s" % result.output) 21 result = runCmd('bitbake-layers show-cross-depends') 22 self.assertIn('aspell', result.output) 25 result = runCmd('bitbake-layers show-layers') 26 self.assertIn('meta-selftest', result.output) 31 result = runCmd('bitbake-layers show-appends') 32 self.assertIn(bb_file, result.output) 35 result = runCmd('bitbake-layers show-overlayed') [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplaceresult/ |
| H A D | tst_qplaceresult.cpp | 80 bool tst_QPlaceResult::checkType(const QPlaceSearchResult &result) in checkType() argument 82 return result.type() == QPlaceSearchResult::PlaceResult; in checkType() 85 void tst_QPlaceResult::detach(QPlaceSearchResult * result) in detach() argument 87 result->setTitle("title"); in detach() 90 void tst_QPlaceResult::setSubClassProperty(QPlaceResult *result) in setSubClassProperty() argument 92 result->setSponsored(false); in setSubClassProperty() 97 QPlaceResult result; in constructorTest() local 98 QCOMPARE(result.type(), QPlaceSearchResult::PlaceResult); in constructorTest() 100 result.setTitle(QStringLiteral("title")); in constructorTest() 106 result.setIcon(icon); in constructorTest() [all …]
|
| /OK3568_Linux_fs/kernel/arch/parisc/math-emu/ |
| H A D | sfadd.c | 42 register unsigned int left, right, result, extent; in sgl_fadd() local 75 Sgl_makequietnan(result); in sgl_fadd() 76 *dstptr = result; in sgl_fadd() 213 Sgl_subtract(left,/*minus*/right,/*into*/result); in sgl_fadd() 214 if(Sgl_iszero_mantissa(result)) in sgl_fadd() 218 Sgl_setone_sign(result); in sgl_fadd() 222 Sgl_setzero_sign(result); in sgl_fadd() 224 *dstptr = result; in sgl_fadd() 230 Sgl_addition(left,right,/*into*/result); in sgl_fadd() 231 if(Sgl_isone_hidden(result)) in sgl_fadd() [all …]
|
| H A D | sfsub.c | 42 register unsigned int left, right, result, extent; in sgl_fsub() local 73 Sgl_makequietnan(result); in sgl_fsub() 74 *dstptr = result; in sgl_fsub() 215 Sgl_subtract(left,/*minus*/right,/*into*/result); in sgl_fsub() 216 if(Sgl_iszero_mantissa(result)) in sgl_fsub() 220 Sgl_setone_sign(result); in sgl_fsub() 224 Sgl_setzero_sign(result); in sgl_fsub() 226 *dstptr = result; in sgl_fsub() 232 Sgl_addition(left,right,/*into*/result); in sgl_fsub() 233 if(Sgl_isone_hidden(result)) in sgl_fsub() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/ps3/ |
| H A D | repository.c | 112 int result; in read_node() local 122 result = lv1_read_repository_node(lpar_id, n1, n2, n3, n4, &v1, in read_node() 125 if (result) { in read_node() 127 __func__, __LINE__, ps3_result(result)); in read_node() 168 int result; in ps3_repository_read_bus_type() local 171 result = read_node(PS3_LPAR_ID_PME, in ps3_repository_read_bus_type() 177 return result; in ps3_repository_read_bus_type() 183 int result; in ps3_repository_read_bus_num_dev() local 186 result = read_node(PS3_LPAR_ID_PME, in ps3_repository_read_bus_num_dev() 192 return result; in ps3_repository_read_bus_num_dev() [all …]
|
| H A D | interrupt.c | 171 int result; in ps3_virq_setup() local 186 result = -ENOMEM; in ps3_virq_setup() 193 result = irq_set_chip_data(*virq, pd); in ps3_virq_setup() 195 if (result) { in ps3_virq_setup() 203 return result; in ps3_virq_setup() 208 return result; in ps3_virq_setup() 245 int result; in ps3_irq_plug_setup() local 248 result = ps3_virq_setup(cpu, outlet, virq); in ps3_irq_plug_setup() 250 if (result) { in ps3_irq_plug_setup() 259 result = lv1_connect_irq_plug_ext(pd->ppe_id, pd->thread_id, *virq, in ps3_irq_plug_setup() [all …]
|
| H A D | device-init.c | 26 int result; in ps3_register_lpm_devices() local 42 result = ps3_repository_read_be_node_id(0, &dev->lpm.node_id); in ps3_register_lpm_devices() 44 if (result) { in ps3_register_lpm_devices() 50 result = ps3_repository_read_lpm_privileges(dev->lpm.node_id, &tmp1, in ps3_register_lpm_devices() 53 if (result) { in ps3_register_lpm_devices() 64 result = -ENODEV; in ps3_register_lpm_devices() 71 result = -EPERM; in ps3_register_lpm_devices() 79 result = ps3_repository_read_pu_id(0, &dev->lpm.pu_id); in ps3_register_lpm_devices() 81 if (result) { in ps3_register_lpm_devices() 87 result = ps3_system_bus_device_register(dev); in ps3_register_lpm_devices() [all …]
|
| /OK3568_Linux_fs/external/xserver/Xext/ |
| H A D | panoramiXprocs.c | 64 int result, len, j; in PanoramiXCreateWindow() local 75 result = dixLookupResourceByType((void **) &parent, stuff->parent, in PanoramiXCreateWindow() 77 if (result != Success) in PanoramiXCreateWindow() 78 return result; in PanoramiXCreateWindow() 90 result = dixLookupResourceByType((void **) &backPix, tmp, in PanoramiXCreateWindow() 92 if (result != Success) in PanoramiXCreateWindow() 93 return result; in PanoramiXCreateWindow() 100 result = dixLookupResourceByType((void **) &bordPix, tmp, in PanoramiXCreateWindow() 102 if (result != Success) in PanoramiXCreateWindow() 103 return result; in PanoramiXCreateWindow() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/i2c/ |
| H A D | imx_lpi2c.c | 30 lpi2c_status_t result = LPI2C_SUCESS; in imx_lpci2c_check_busy_bus() local 36 result = LPI2C_BUSY; in imx_lpci2c_check_busy_bus() 38 return result; in imx_lpci2c_check_busy_bus() 43 lpi2c_status_t result = LPI2C_SUCESS; in imx_lpci2c_check_clear_error() local 53 result = LPI2C_PIN_LOW_TIMEOUT_ERR; in imx_lpci2c_check_clear_error() 55 result = LPI2C_ARB_LOST_ERR; in imx_lpci2c_check_clear_error() 57 result = LPI2C_NAK_ERR; in imx_lpci2c_check_clear_error() 59 result = LPI2C_FIFO_ERR; in imx_lpci2c_check_clear_error() 69 return result; in imx_lpci2c_check_clear_error() 74 lpi2c_status_t result = LPI2C_SUCESS; in bus_i2c_wait_for_tx_ready() local [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qproposedsearchresult/ |
| H A D | tst_qproposedsearchresult.cpp | 45 bool checkType(const QPlaceSearchResult &result); 46 void detach(QPlaceSearchResult *result); 47 void setSubClassProperty(QPlaceProposedSearchResult *result); 76 bool tst_QPlaceProposedSearchResult::checkType(const QPlaceSearchResult &result) in checkType() argument 78 return result.type() == QPlaceSearchResult::ProposedSearchResult; in checkType() 81 void tst_QPlaceProposedSearchResult::detach(QPlaceSearchResult *result) in detach() argument 83 result->setTitle(QStringLiteral("title")); in detach() 86 void tst_QPlaceProposedSearchResult::setSubClassProperty(QPlaceProposedSearchResult *result) in setSubClassProperty() argument 90 result->setSearchRequest(request); in setSubClassProperty() 95 QPlaceProposedSearchResult result; in constructorTest() local [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/detail/functions/ |
| H A D | trig.hpp | 21 void hyp0F1(T& result, const T& b, const T& x) in hyp0F1() argument 34 eval_divide(result, x_pow_n_div_n_fact, pochham_b); in hyp0F1() 35 eval_add(result, ui_type(1)); in hyp0F1() 42 eval_multiply(tol, result); in hyp0F1() 59 eval_add(result, term); in hyp0F1() 74 void eval_sin(T& result, const T& x) in eval_sin() argument 77 if(&result == &x) in eval_sin() 81 result = temp; in eval_sin() 95 result = std::numeric_limits<number<T, et_on> >::quiet_NaN().backend(); in eval_sin() 102 result = x; in eval_sin() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wimax/i2400m/ |
| H A D | driver.c | 116 int result; in i2400m_op_msg_from_user() local 125 result = PTR_ERR(ack_skb); in i2400m_op_msg_from_user() 128 result = wimax_msg_send(&i2400m->wimax_dev, ack_skb); in i2400m_op_msg_from_user() 132 genl_info, result); in i2400m_op_msg_from_user() 133 return result; in i2400m_op_msg_from_user() 142 int result; member 165 int result; in i2400m_op_reset() local 170 .result = 0, in i2400m_op_reset() 177 result = i2400m_reset(i2400m, I2400M_RT_WARM); in i2400m_op_reset() 178 if (result < 0) in i2400m_op_reset() [all …]
|
| /OK3568_Linux_fs/external/recovery/ |
| H A D | encryptedfs_provisioning.c | 123 int result; in set_text_file_contents() local 131 result = fputs(buffer, out_file); in set_text_file_contents() 132 if (result != 0) { in set_text_file_contents() 148 int result; in read_encrypted_fs_boolean_property() local 151 result = get_text_file_contents(prop_value, PROPERTY_VALUE_MAX, prop_file_name); in read_encrypted_fs_boolean_property() 153 if (result < 0) { in read_encrypted_fs_boolean_property() 154 return result; in read_encrypted_fs_boolean_property() 173 int result; in write_encrypted_fs_boolean_property() local 180 result = set_text_file_contents("1", prop_file_name); in write_encrypted_fs_boolean_property() 182 result = set_text_file_contents("0", prop_file_name); in write_encrypted_fs_boolean_property() [all …]
|
| /OK3568_Linux_fs/kernel/arch/alpha/lib/ |
| H A D | checksum.c | 57 unsigned long result; in csum_tcpudp_nofold() local 59 result = (__force u64)saddr + (__force u64)daddr + in csum_tcpudp_nofold() 65 result = (result & 0xffffffff) + (result >> 32); in csum_tcpudp_nofold() 67 result = (result & 0xffffffff) + (result >> 32); in csum_tcpudp_nofold() 68 return (__force __wsum)result; in csum_tcpudp_nofold() 82 unsigned long result = 0; in do_csum() local 88 result = *buff << 8; in do_csum() 95 result += *(unsigned short *) buff; in do_csum() 103 result += *(unsigned int *) buff; in do_csum() 115 result += carry; in do_csum() [all …]
|
| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | builderthread.py | 67 result = self.builder.out_queue.get() 68 self.builder.ProcessResult(result) 137 result = command.CommandResult() 138 result.return_code = 0 150 result.already_done = os.path.exists(done_file) 152 not result.already_done) 153 if result.already_done: 156 result.return_code = int(fd.readline()) 159 if result.return_code == RETURN_CODE_RETRY: 164 result.stderr = 'bad' [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
| H A D | phy_qmath.c | 28 s32 result; in qm_muls16() local 30 result = 0x7fffffff; in qm_muls16() 32 result = ((s32) (op1) * (s32) (op2)); in qm_muls16() 34 return (s16) (result >> 15); in qm_muls16() 44 s32 result; in qm_add32() local 45 result = op1 + op2; in qm_add32() 46 if (op1 < 0 && op2 < 0 && result > 0) in qm_add32() 47 result = 0x80000000; in qm_add32() 48 else if (op1 > 0 && op2 > 0 && result < 0) in qm_add32() 49 result = 0x7fffffff; in qm_add32() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/iio/imu/inv_mpu6050/ |
| H A D | inv_mpu_core.c | 404 int result; in inv_mpu6050_set_power_itg() local 406 result = inv_mpu6050_pwr_mgmt_1_write(st, !power_on, -1, -1); in inv_mpu6050_set_power_itg() 407 if (result) in inv_mpu6050_set_power_itg() 408 return result; in inv_mpu6050_set_power_itg() 445 int result; in inv_mpu6050_set_lpf_regs() local 447 result = regmap_write(st->map, st->reg->lpf, val); in inv_mpu6050_set_lpf_regs() 448 if (result) in inv_mpu6050_set_lpf_regs() 449 return result; in inv_mpu6050_set_lpf_regs() 481 int result; in inv_mpu6050_init_config() local 485 result = inv_mpu6050_set_gyro_fsr(st, st->chip_config.fsr); in inv_mpu6050_init_config() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/nfc/st95hf/ |
| H A D | core.c | 307 int result = 0; in st95hf_echo_command() local 310 result = st95hf_send_recv_cmd(st95context, CMD_ECHO, 0, NULL, false); in st95hf_echo_command() 311 if (result) in st95hf_echo_command() 312 return result; in st95hf_echo_command() 315 result = st95hf_spi_recv_echo_res(&st95context->spicontext, in st95hf_echo_command() 317 if (result) { in st95hf_echo_command() 319 "err: echo response receive error = 0x%x\n", result); in st95hf_echo_command() 320 return result; in st95hf_echo_command() 334 int result = 0; in secondary_configuration_type4a() local 338 result = st95hf_send_recv_cmd(stcontext, in secondary_configuration_type4a() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/cpp_int/ |
| H A D | add.hpp | 22 inline void add_unsigned(CppInt1& result, const CppInt2& a, const CppInt3& b) BOOST_MP_NOEXCEPT_IF(… in add_unsigned() argument 35 … result = static_cast<double_limb_type>(*a.limbs()) + static_cast<double_limb_type>(*b.limbs()); in add_unsigned() 36 result.sign(s); in add_unsigned() 39 result.resize(x, x); in add_unsigned() 42 typename CppInt1::limb_pointer pr = result.limbs(); in add_unsigned() 68 … std::copy(pa, pa + (pr_end - pr), stdext::checked_array_iterator<limb_type*>(pr, result.size())); in add_unsigned() 86 result.resize(x + 1, x + 1); in add_unsigned() 87 if(result.size() > x) in add_unsigned() 88 result.limbs()[x] = static_cast<limb_type>(carry); in add_unsigned() 90 result.normalize(); in add_unsigned() [all …]
|