/kernel/linux/linux-5.10/drivers/usb/gadget/udc/ |
H A D | mv_udc.h | 186 struct mv_ep *eps; member
|
H A D | mv_u3d.h | 259 struct mv_u3d_ep *eps; member
|
H A D | atmel_usba_udc.c | 2139 struct usba_ep *eps, *ep; in atmel_udc_of_init() local 2172 eps = devm_kcalloc(&pdev->dev, udc->num_ep, sizeof(struct usba_ep), in atmel_udc_of_init() 2174 if (!eps) in atmel_udc_of_init() 2177 udc->gadget.ep0 = &eps[0].ep; in atmel_udc_of_init() 2179 INIT_LIST_HEAD(&eps[0].ep.ep_list); in atmel_udc_of_init() 2185 ep = &eps[i]; in atmel_udc_of_init() 2264 return eps; in atmel_udc_of_init()
|
H A D | fsl_qe_udc.h | 319 struct qe_ep eps[USB_MAX_ENDPOINTS]; member
|
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/ |
H A D | mv_udc.h | 186 struct mv_ep *eps; member
|
H A D | mv_u3d.h | 259 struct mv_u3d_ep *eps; member
|
H A D | atmel_usba_udc.c | 2142 struct usba_ep *eps, *ep; in atmel_udc_of_init() local 2177 eps = devm_kcalloc(&pdev->dev, udc->num_ep, sizeof(struct usba_ep), in atmel_udc_of_init() 2179 if (!eps) in atmel_udc_of_init() 2182 udc->gadget.ep0 = &eps[0].ep; in atmel_udc_of_init() 2184 INIT_LIST_HEAD(&eps[0].ep.ep_list); in atmel_udc_of_init() 2190 ep = &eps[i]; in atmel_udc_of_init() 2269 return eps; in atmel_udc_of_init()
|
H A D | fsl_qe_udc.h | 319 struct qe_ep eps[USB_MAX_ENDPOINTS]; member
|
/test/xts/hats/hdf/hdf_lite/manager/common/ |
H A D | hdf_sbuf_test.cpp | 843 constexpr double eps = 1e-6; in HWTEST_F() local 852 ASSERT_EQ(fabs(data - readData) < eps, true); in HWTEST_F() 858 constexpr float eps = 1e-6; 867 ASSERT_EQ(fabs(data - readData) < eps, true);
|
/kernel/linux/linux-5.10/include/linux/usb/ |
H A D | hcd.h | 349 struct usb_host_endpoint **eps, unsigned int num_eps, 355 struct usb_host_endpoint **eps, unsigned int num_eps,
|
/kernel/linux/linux-6.6/include/linux/usb/ |
H A D | hcd.h | 336 struct usb_host_endpoint **eps, unsigned int num_eps, 342 struct usb_host_endpoint **eps, unsigned int num_eps,
|
/third_party/alsa-utils/topology/nhlt/intel/ |
H A D | ssp-nhlt.c | 449 int nhlt_ssp_get_ep(struct intel_nhlt_params *nhlt, struct endpoint_descriptor **eps, in nhlt_ssp_get_ep() argument 553 *eps = (struct endpoint_descriptor *)ep_target; in nhlt_ssp_get_ep()
|
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/ |
H A D | usbd_generic_epfile.c | 686 struct generic_ep *ep = dev->eps; in generic_eps_disable() 720 struct generic_ep *ep = dev->eps; in generic_eps_enable()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
H A D | vktRayTracingBuiltinTests.cpp | 2244 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in validateFloatBuffer() local 2257 if (deFloatAbs(retrievedValue - expectedValues[pos]) > eps) in validateFloatBuffer() 2281 if (deFloatAbs(retrievedValue - expectedValue) > eps) in validateFloatBuffer() 2302 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in validateVectorBuffer() local 2318 if (deFloatAbs(retrievedValue - expectedValues[pos]) > eps) in validateVectorBuffer() 2344 if (deFloatAbs(retrievedValue - expectedValue) > eps) in validateVectorBuffer() 2363 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in validateMatrixBuffer() local 2379 if (deFloatAbs(retrievedValue - expectedValues[pos]) > eps) in validateMatrixBuffer() 2409 if (deFloatAbs(retrievedValue - expectedValue) > eps) in validateMatrixBuffer()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hdr/ |
H A D | hdr_helper.cpp | 505 const float eps = 1e-5;
in ConvertExtendInfoMain() local 507 metadata.metaISO.enhanceClippedThreholdMaxGainmap[INDEX_ONE]) < eps) &&
in ConvertExtendInfoMain() 509 metadata.metaISO.enhanceClippedThreholdMaxGainmap[INDEX_TWO]) < eps) &&
in ConvertExtendInfoMain() 511 metadata.metaISO.enhanceClippedThreholdMinGainmap[INDEX_ONE]) < eps) &&
in ConvertExtendInfoMain() 513 metadata.metaISO.enhanceClippedThreholdMinGainmap[INDEX_TWO]) < eps)) {
in ConvertExtendInfoMain()
|
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/cdns2/ |
H A D | cdns2-gadget.c | 1320 * Endpoints in pdev->eps[] are held in order: in cdns2_thread_irq_handler() 1325 cdns2_handle_epx_interrupt(&pdev->eps[ep_idx]); in cdns2_thread_irq_handler() 1351 pep = &pdev->eps[i]; in cdns2_eps_onchip_buffer_init() 1363 pep = &pdev->eps[i]; in cdns2_eps_onchip_buffer_init() 2172 cdns2_free_tr_segment(&pdev->eps[i]); in cdns2_free_all_eps() 2186 * Endpoints are being held in pdev->eps[] in form: in cdns2_init_eps() 2192 pep = &pdev->eps[i]; in cdns2_init_eps() 2199 /* Ep0in and ep0out are represented by pdev->eps[0]. */ in cdns2_init_eps()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/ |
H A D | vktRayQueryBuiltinTests.cpp | 1664 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1678 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1701 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1723 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1743 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1775 if (deFloatAbs(retrievedValue - expectedValue) <= eps && in verify() 1822 if (deFloatAbs(retrievedValue - expectedValue) > eps || in verify() 1845 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1861 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1891 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 3038 const float eps = 1.0f / float(FIXED_POINT_DIVISOR); initAccelerationStructures() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/ |
H A D | vktRayQueryBuiltinTests.cpp | 1644 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1658 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1681 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1703 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1723 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1755 if (deFloatAbs(retrievedValue - expectedValue) <= eps && in verify() 1802 if (deFloatAbs(retrievedValue - expectedValue) > eps || in verify() 1825 const float eps = float(FIXED_POINT_ALLOWED_ERROR) / float(FIXED_POINT_DIVISOR); in verify() local 1841 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 1871 if (deFloatAbs(retrievedValue - expectedValue) > eps) in verify() 3018 const float eps = 1.0f / float(FIXED_POINT_DIVISOR); initAccelerationStructures() local [all...] |
/base/usb/usb_manager/services/zidl/include/ |
H A D | usb_server_proxy.h | 103 int32_t GetDeviceEndpointsMessageParcel(MessageParcel &data, std::vector<USBEndpoint> &eps);
|
H A D | usb_server_stub.h | 86 int32_t SetDeviceEndpointsMessageParcel(std::vector<USBEndpoint> &eps, MessageParcel &data);
|
/third_party/musl/src/math/ |
H A D | exp2l.c | 404 static const float eps[TBLSIZE] = { variable 547 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE. 548 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]), 549 * with |z - eps[i]| <= 2**-8 + 2**-98 for the table used. 551 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via 553 * The values in exp2t[] and eps[] are chosen such that 554 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such 611 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */ in exp2l() 613 z -= eps[i in exp2l() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | exp2l.c | 404 static const float eps[TBLSIZE] = { variable 547 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE. 548 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]), 549 * with |z - eps[i]| <= 2**-8 + 2**-98 for the table used. 551 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via 553 * The values in exp2t[] and eps[] are chosen such that 554 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such 611 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */ in exp2l() 613 z -= eps[i in exp2l() [all...] |
/third_party/skia/tests/ |
H A D | SkNxTest.cpp | 16 auto assert_nearly_eq = [&](float eps, const SkNx<N, float>& v, in test_Nf() 18 auto close = [=](float a, float b) { return fabsf(a-b) <= eps; }; in test_Nf()
|
/third_party/python/Lib/test/ |
H A D | test_math.py | 17 eps = 1E-05 variable 265 self.assertRaises(ValueError, math.acos, 1 + eps) 266 self.assertRaises(ValueError, math.acos, -1 - eps) 286 self.assertRaises(ValueError, math.asin, 1 + eps) 287 self.assertRaises(ValueError, math.asin, -1 - eps) 606 if abs(mant-emant) > eps or exp != eexp: 1210 if abs(v1-e1) > eps or abs(v2-e2):
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineBindVertexBuffers2Tests.cpp | 1024 const float eps = 0.2f; in iterate() local 1025 const tcu::Vec3 threshold (eps, eps, eps); in iterate()
|