Home
last modified time | relevance | path

Searched full:result (Results 1 – 25 of 7444) sorted by relevance

12345678910>>...298

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp24 std::unordered_map<std::string, PropertySetter> result; in makeLayoutPropertySetters() local
26 result["visibility"] = &setVisibility; in makeLayoutPropertySetters()
29result["line-cap"] = &setProperty<LineLayer, PropertyValue<LineCapType>, &LineLayer::setLineCap>; in makeLayoutPropertySetters()
30result["line-join"] = &setProperty<LineLayer, DataDrivenPropertyValue<LineJoinType>, &LineLayer::s… in makeLayoutPropertySetters()
31result["line-miter-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineMite… in makeLayoutPropertySetters()
32result["line-round-limit"] = &setProperty<LineLayer, PropertyValue<float>, &LineLayer::setLineRoun… in makeLayoutPropertySetters()
34result["symbol-placement"] = &setProperty<SymbolLayer, PropertyValue<SymbolPlacementType>, &Symbol… in makeLayoutPropertySetters()
35result["symbol-spacing"] = &setProperty<SymbolLayer, PropertyValue<float>, &SymbolLayer::setSymbol… in makeLayoutPropertySetters()
36result["symbol-avoid-edges"] = &setProperty<SymbolLayer, PropertyValue<bool>, &SymbolLayer::setSym… in makeLayoutPropertySetters()
37result["icon-allow-overlap"] = &setProperty<SymbolLayer, PropertyValue<bool>, &SymbolLayer::setIco… in makeLayoutPropertySetters()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py24 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 Dbblogging.py17 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 Dbblayers.py16 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/external/xserver/Xext/
H A DpanoramiXprocs.c64 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/buildroot/dl/qt5location/git/tests/auto/qplaceresult/
H A Dtst_qplaceresult.cpp80 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/external/rk_pcba_test/pcba_minui/minzip/
H A DBits.h27 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 DBits.h27 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/arch/powerpc/platforms/ps3/
H A Drepository.c112 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 Dinterrupt.c171 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 Ddevice-init.c26 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/u-boot/drivers/i2c/
H A Dimx_lpi2c.c30 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/kernel/fs/hpfs/
H A Dnamei.c32 struct inode *result; in hpfs_mkdir() local
54 result = new_inode(dir->i_sb); in hpfs_mkdir()
55 if (!result) in hpfs_mkdir()
57 hpfs_init_inode(result); in hpfs_mkdir()
58 result->i_ino = fno; in hpfs_mkdir()
59 hpfs_i(result)->i_parent_dir = dir->i_ino; in hpfs_mkdir()
60 hpfs_i(result)->i_dno = dno; in hpfs_mkdir()
61result->i_ctime.tv_sec = result->i_mtime.tv_sec = result->i_atime.tv_sec = local_to_gmt(dir->i_sb,… in hpfs_mkdir()
62 result->i_ctime.tv_nsec = 0; in hpfs_mkdir()
63 result->i_mtime.tv_nsec = 0; in hpfs_mkdir()
[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 Dtrig.hpp21 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()
99 …BOOST_THROW_EXCEPTION(std::domain_error("Result is undefined or complex and there is no NaN for th… in eval_sin()
[all …]
H A Dpow.hpp23 inline void pow_imp(T& result, const T& t, const U& p, const mpl::false_&) in pow_imp() argument
33 if(&result == &t) in pow_imp()
37 result = temp; in pow_imp()
41 // This will store the result. in pow_imp()
44 result = t; in pow_imp()
47 result = int_type(1); in pow_imp()
63 // Multiply the result with each binary power contained in the exponent. in pow_imp()
64 eval_multiply(result, x); in pow_imp()
70 inline void pow_imp(T& result, const T& t, const U& p, const mpl::true_&) in pow_imp() argument
82 eval_divide(result, temp, denom); in pow_imp()
[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 Dadd.hpp22 inline void add_unsigned(CppInt1& result, const CppInt2& a, const CppInt3& b) BOOST_MP_NOEXCEPT_IF(… in add_unsigned() argument
35result = 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 …]
H A Dbitwise.hpp20 cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result, in is_valid_bitwise_op() argument
23 if(result.sign() || o.sign()) in is_valid_bitwise_op()
34 …const cpp_int_backend<MinBits1, MaxBits1, signed_magnitude, Checked1, Allocator1>& result, const m… in is_valid_bitwise_op() argument
36 if(result.sign()) in is_valid_bitwise_op()
50 CppInt1& result, in bitwise_op() argument
57 // * result negative, o positive. in bitwise_op()
58 // * o negative, result positive. in bitwise_op()
65 // are not permitted and an exception will result. in bitwise_op()
67 is_valid_bitwise_op(result, o, typename CppInt1::checked_type()); in bitwise_op()
69 // First figure out how big the result needs to be and set up some data: in bitwise_op()
[all …]
H A Ddivide.hpp15 CppInt1* result, in divide_unsigned_helper() argument
20 if(((void*)result == (void*)&x) || ((void*)&r == (void*)&x)) in divide_unsigned_helper()
23 divide_unsigned_helper(result, t, y, r); in divide_unsigned_helper()
26 if(((void*)result == (void*)&y) || ((void*)&r == (void*)&y)) in divide_unsigned_helper()
29 divide_unsigned_helper(result, x, t, r); in divide_unsigned_helper()
36 result equal to 0. Then in each loop we calculate our in divide_unsigned_helper()
38 add our guess to the result, and subtract guess*y in divide_unsigned_helper()
41 from the result rather than adding. The value of the guess in divide_unsigned_helper()
54 if(result == &r) in divide_unsigned_helper()
57 divide_unsigned_helper(result, x, y, rem); in divide_unsigned_helper()
[all …]
/OK3568_Linux_fs/kernel/arch/xtensa/include/asm/
H A Datomic.h62 int result; \
66 " " #op " %[result], %[tmp], %[i]\n" \
67 " s32ex %[result], %[addr]\n" \
68 " getex %[result]\n" \
69 " beqz %[result], 1b\n" \
70 : [result] "=&a" (result), [tmp] "=&a" (tmp) \
80 int result; \
84 " " #op " %[result], %[tmp], %[i]\n" \
85 " s32ex %[result], %[addr]\n" \
86 " getex %[result]\n" \
[all …]
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dbuilderthread.py50 result thread, and this helps to serialise the build output.
53 """Set up a new result thread
56 builder: Builder which will be sent each result
62 """Called to start up the result thread.
64 We collect the next result job and pass it on to the build.
67 result = self.builder.out_queue.get()
68 self.builder.ProcessResult(result)
127 force_build_failures: Force a bulid if the previous result showed
135 # Create a default result - it will be overwritte by the call to
137 result = command.CommandResult()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python-pygpgme/
H A D0001-reflect-2.1-reporting-for-key-imports.patch27 result = ctx.import_(fp)
28 - self.assertEqual(result.considered, 1)
29 + self.assertEqual(result.considered, 3)
30 self.assertEqual(result.no_user_id, 0)
31 self.assertEqual(result.imported, 1)
32 self.assertEqual(result.imported_rsa, 0)
34 self.assertEqual(result.new_sub_keys, 0)
35 self.assertEqual(result.new_signatures, 0)
36 self.assertEqual(result.new_revocations, 0)
37 - self.assertEqual(result.secret_read, 1)
[all …]
/OK3568_Linux_fs/kernel/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_core.c404 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/buildroot/dl/qt5location/git/tests/auto/qproposedsearchresult/
H A Dtst_qproposedsearchresult.cpp45 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/kernel/arch/parisc/math-emu/
H A Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
75 Sgl_makequietnan(result); in sgl_fadd()
76 *dstptr = result; in sgl_fadd()
185 /* Left is not a zero and must be the result. Trapped in sgl_fadd()
186 * underflows are signaled if left is denormalized. Result in sgl_fadd()
208 /* Both operands are denormalized. The result must be exact 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()
[all …]
H A Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
73 Sgl_makequietnan(result); in sgl_fsub()
74 *dstptr = result; in sgl_fsub()
186 /* Left is not a zero and must be the result. Trapped in sgl_fsub()
187 * underflows are signaled if left is denormalized. Result in sgl_fsub()
210 /* Both operands are denormalized. The result must be exact 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()
[all …]

12345678910>>...298