Home
last modified time | relevance | path

Searched refs:acceleration (Results 1 - 14 of 14) sorted by relevance

/third_party/backends/testsuite/backend/genesys/
H A Dtests_motor.cpp40 slope.acceleration = 1.2e-8; in test_create_slope_table_small_full_step()
70 slope.acceleration = 1.2e-8; in test_create_slope_table_small_full_step_target_speed_too_high()
90 slope.acceleration = 1.2e-8; in test_create_slope_table_small_half_step()
143 slope.acceleration = 1.013948e-9; in test_create_slope_table_large_full_step()
201 slope.acceleration = 1.013948e-9; in test_create_slope_table_large_half_step()
/third_party/lz4/lib/
H A Dlz4.c49 * Select "acceleration" for LZ4_compress_fast() when parameter value <= 0
54 * Any "acceleration" value higher than this threshold
921 const int acceleration) in LZ4_compress_generic_validated()
965 assert(acceleration >= 1); in LZ4_compress_generic_validated()
997 int searchMatchNb = acceleration << LZ4_skipTrigger; in LZ4_compress_generic_validated()
1018 int searchMatchNb = acceleration << LZ4_skipTrigger; in LZ4_compress_generic_validated()
1319 const int acceleration) in LZ4_compress_generic()
1342 tableType, dictDirective, dictIssue, acceleration); in LZ4_compress_generic()
1346 int LZ4_compress_fast_extState(void* state, const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) in LZ4_compress_fast_extState() argument
1350 if (acceleration < in LZ4_compress_fast_extState()
910 LZ4_compress_generic_validated( LZ4_stream_t_internal* const cctx, const char* const source, char* const dest, const int inputSize, int* inputConsumed, const int maxOutputSize, const limitedOutput_directive outputDirective, const tableType_t tableType, const dict_directive dictDirective, const dictIssue_directive dictIssue, const int acceleration) LZ4_compress_generic_validated() argument
1308 LZ4_compress_generic( LZ4_stream_t_internal* const cctx, const char* const src, char* const dst, const int srcSize, int *inputConsumed, const int dstCapacity, const limitedOutput_directive outputDirective, const tableType_t tableType, const dict_directive dictDirective, const dictIssue_directive dictIssue, const int acceleration) LZ4_compress_generic() argument
1378 LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration) LZ4_compress_fast_extState_fastReset() argument
1416 LZ4_compress_fast(const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) LZ4_compress_fast() argument
1632 LZ4_compress_fast_continue(LZ4_stream_t* LZ4_stream, const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration) LZ4_compress_fast_continue() argument
[all...]
H A Dlz4.h226 Same as LZ4_compress_default(), but allows selection of "acceleration" factor.
227 The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
229 An acceleration value of "1" is the same as regular LZ4_compress_default()
233 LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
243 LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
251 * note: acceleration parameter is fixed to "default".
394 LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
545 LZ4LIB_STATIC_API int LZ4_compress_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
H A Dlz4frame.c855 int const acceleration = (level < 0) ? -level + 1 : 1; in LZ4F_compressBlock() local
859 return LZ4_compress_fast_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstCapacity, acceleration); in LZ4F_compressBlock()
861 return LZ4_compress_fast_extState_fastReset(ctx, src, dst, srcSize, dstCapacity, acceleration); in LZ4F_compressBlock()
867 int const acceleration = (level < 0) ? -level + 1 : 1; in LZ4F_compressBlock_continue() local
870 return LZ4_compress_fast_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstCapacity, acceleration); in LZ4F_compressBlock_continue()
/third_party/lz4/examples/
H A Dcompress_functions.c123 const int acceleration = 1; in bench() local
145 rv = LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration); in bench()
152 LZ4_compress_fast(src, dst, src_size, max_dst_size, acceleration); in bench()
158 rv = LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration); in bench()
165 LZ4_compress_fast_extState(&state, src, dst, src_size, max_dst_size, acceleration); in bench()
174 // //rv = LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration); in bench()
175 // LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, acceleration); in bench()
183 // //LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, notLimited, byU16, noDict, noDictIssue, acceleration); in bench()
184 // LZ4_compress_generic_wrapper(&state, src, dst, src_size, max_dst_size, acceleration); in bench()
273 // Using this function is identical to LZ4_compress_default except we need to specify an "acceleration" valu in main()
[all...]
/third_party/backends/backend/genesys/
H A Dmotor.cpp40 float speed_v = std::sqrt(initial_speed_v * initial_speed_v + 2 * acceleration * step); in get_table_step_shifted()
58 slope.acceleration = compute_acceleration_for_steps(initial_w, max_w, steps); in create_from_steps()
159 << " a: " << slope.acceleration << '\n' in operator <<()
H A Dmotor.h33 /* Describes a motor acceleration curve.
38 a - acceleration in steps per pixeltime squared
47 Where `a` is acceleration, `t` is time. Also we can calculate the travelled distance `s`:
94 // acceleration in steps per pixeltime squared.
95 float acceleration = 0; member
/third_party/vk-gl-cts/framework/platform/win32/
H A DtcuWGL.hpp84 Acceleration acceleration; member in tcu::wgl::PixelFormatInfo
139 , acceleration (ACCELERATION_LAST) in PixelFormatInfo()
H A DtcuWGL.cpp395 info.acceleration = translateAcceleration(values[WGL_ACCELERATION_ARB]); in getPixelFormatInfo()
593 if (info.acceleration != wgl::PixelFormatInfo::ACCELERATION_FULL) in isSupportedByTests()
/third_party/lz4/tests/
H A DabiTest.c78 int const acceleration = 1; in roundTripTest() local
81 { int const cSize = LZ4_compress_fast_continue(&LZ4_cState, (const char*)srcBuff, (char*)compressedBuff, (int)srcSize, (int)compressedBuffCapacity, acceleration); in roundTripTest()
/third_party/mbedtls/include/mbedtls/
H A Dgcm.h73 unsigned char MBEDTLS_PRIVATE(acceleration); /*!< The acceleration to use. */
/third_party/lz4/programs/
H A Dbench.c227 int const acceleration = (pThis->cLevel < 0) ? -pThis->cLevel + 1 : 1; in LZ4_compressBlockNoStream() local
228 return LZ4_compress_fast(src, dst, srcSize, dstSize, acceleration); in LZ4_compressBlockNoStream()
244 int const acceleration = (pThis->cLevel < 0) ? -pThis->cLevel + 1 : 1; in LZ4_compressBlockStream() local
245 return LZ4_compress_fast_continue(pThis->LZ4_stream, src, dst, srcSize, dstSize, acceleration); in LZ4_compressBlockStream()
/third_party/mbedtls/library/
H A Dgcm.c44 /* Used to select the acceleration mechanism */
61 ctx->acceleration = MBEDTLS_GCM_ACC_LARGETABLE; in gcm_set_acceleration()
63 ctx->acceleration = MBEDTLS_GCM_ACC_SMALLTABLE; in gcm_set_acceleration()
69 ctx->acceleration = MBEDTLS_GCM_ACC_AESNI; in gcm_set_acceleration()
75 ctx->acceleration = MBEDTLS_GCM_ACC_AESCE; in gcm_set_acceleration()
121 switch (ctx->acceleration) { in gcm_gen_table()
350 switch (ctx->acceleration) { in gcm_mult()
/third_party/ffmpeg/
H A Dconfigure333 The following libraries provide various hardware acceleration features:
339 --disable-d3d11va disable Microsoft Direct3D 11 video acceleration code [autodetect]
340 --disable-dxva2 disable Microsoft DirectX 9 video acceleration code [autodetect]
346 --disable-nvdec disable Nvidia video decoding acceleration (via hwaccel) [autodetect]
7570 echo "External libraries providing hardware acceleration:"

Completed in 29 milliseconds