/AliOS-Things-master/components/SDL2/test/ |
A D | testhaptic.c | 49 unsigned int supported; in main() local 115 supported = SDL_HapticQuery(haptic); in main() 119 if (supported & SDL_HAPTIC_SINE) { in main() 246 if (supported & SDL_HAPTIC_RAMP) { in main() 319 unsigned int supported; in HapticPrintSupported() local 326 if (supported & SDL_HAPTIC_SINE) in HapticPrintSupported() 337 if (supported & SDL_HAPTIC_RAMP) in HapticPrintSupported() 341 if (supported & SDL_HAPTIC_SPRING) in HapticPrintSupported() 343 if (supported & SDL_HAPTIC_DAMPER) in HapticPrintSupported() 347 if (supported & SDL_HAPTIC_CUSTOM) in HapticPrintSupported() [all …]
|
/AliOS-Things-master/components/SDL2/src/haptic/ |
A D | SDL_haptic.c | 160 if (haptic->supported & SDL_HAPTIC_GAIN) in SDL_HapticOpen() 162 if (haptic->supported & SDL_HAPTIC_AUTOCENTER) in SDL_HapticOpen() 441 return haptic->supported; in SDL_HapticQuery() 468 if ((haptic->supported & effect->type) != 0) in SDL_HapticEffectSupported() 616 if ((haptic->supported & SDL_HAPTIC_STATUS) == 0) { in SDL_HapticGetEffectStatus() 636 if ((haptic->supported & SDL_HAPTIC_GAIN) == 0) { in SDL_HapticSetGain() 678 if ((haptic->supported & SDL_HAPTIC_AUTOCENTER) == 0) { in SDL_HapticSetAutocenter() 703 if ((haptic->supported & SDL_HAPTIC_PAUSE) == 0) { in SDL_HapticPause() 720 if ((haptic->supported & SDL_HAPTIC_PAUSE) == 0) { in SDL_HapticUnpause() 772 if (haptic->supported & SDL_HAPTIC_SINE) { in SDL_HapticRumbleInit() [all …]
|
A D | SDL_syshaptic.h | 46 unsigned int supported; /* Supported effects */ member
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG.c | 37 } supported[] = { variable 228 for ( i=0; i < ARRAYSIZE(supported); ++i ) { in IMG_LoadTyped_RW() 229 if(supported[i].is) { in IMG_LoadTyped_RW() 230 if(!supported[i].is(src)) in IMG_LoadTyped_RW() 235 || !IMG_string_equals(type, supported[i].type)) in IMG_LoadTyped_RW() 240 supported[i].type); in IMG_LoadTyped_RW() 243 image = supported[i].load(src); in IMG_LoadTyped_RW()
|
/AliOS-Things-master/components/csi/CMSIS/Core/Include/ |
A D | ARMCM0.h | 87 #warning Not supported compiler type 118 #warning Not supported compiler type
|
/AliOS-Things-master/components/csi/csi2/include/core/cmsis/ |
A D | ARMCM0.h | 87 #warning Not supported compiler type 118 #warning Not supported compiler type
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/ |
A D | depthwiseconv_3x3_filter_common.h | 264 bool supported = stride == params.stride_height && stride <= 2 && 271 if (!supported) { 453 bool supported = 462 if (!supported) { 486 supported = in_x_end <= (input_width + 1) && in_y_end <= (input_height + 1); 488 if (!supported) { 494 supported = (input_width == input_height); 496 supported = (input_width == input_height); 498 return supported;
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/cmsis/inc/ |
A D | fpga1000.h | 149 #warning Not supported compiler type 168 #warning Not supported compiler type
|
A D | haas1000.h | 214 #warning Not supported compiler type 233 #warning Not supported compiler type
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/ |
A D | config.h.in | 106 /* Set to 1 if OpenGL is supported */ 112 /* Set to 1 if NEON is supported */ 124 /* Set to 1 if SSE2 is supported */ 127 /* Set to 1 if SSE4.1 is supported */
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | exception_chain.py.exp | 1 Warning: exception chaining not supported
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/cmake/ |
A D | config.h.in | 109 /* Set to 1 if OpenGL is supported */ 115 /* Set to 1 if NEON is supported */ 128 /* Set to 1 if SSE2 is supported */ 131 /* Set to 1 if SSE4.1 is supported */
|
/AliOS-Things-master/components/SDL2/docs/ |
A D | README-platforms.md | 4 We maintain the list of supported platforms on our wiki now, and how to
|
A D | README-wince.md | 4 Windows CE is no longer supported by SDL.
|
/AliOS-Things-master/components/SDL2/src/hidapi/windows/ |
A D | Makefile-manual | 11 $(error Your platform ${OS} is not supported at this time.)
|
/AliOS-Things-master/components/jsoncpp/include/ |
A D | PreventInBuildInstalls.cmake | 7 "This is not supported."
|
/AliOS-Things-master/components/SDL2/src/hidapi/libusb/ |
A D | Makefile-manual | 15 $(error Your platform ${OS} is not supported by hidapi/libusb at this time.)
|
/AliOS-Things-master/components/SDL2/src/hidapi/testgui/ |
A D | Makefile-manual | 23 $(error Your platform ${OS} is not supported at this time.)
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/powerpc-vsx/ |
A D | README | 7 Currently only this feature is supported only for linux platform. 18 checks must be supported. I.e.: 49 That function must return 1 if POWERPC_VSX instructions are supported, 0 if not.
|
/AliOS-Things-master/components/SDL2/src/haptic/darwin/ |
A D | SDL_syshaptic.c | 411 if (features.supportedEffects & (ff)) supported |= (s) 421 unsigned int supported; in GetSupportedFeatures() local 431 supported = 0; in GetSupportedFeatures() 456 supported |= SDL_HAPTIC_GAIN; in GetSupportedFeatures() 466 supported |= SDL_HAPTIC_AUTOCENTER; in GetSupportedFeatures() 480 supported |= SDL_HAPTIC_STATUS | SDL_HAPTIC_PAUSE; in GetSupportedFeatures() 482 haptic->supported = supported; in GetSupportedFeatures()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/acceleration/compatibility/ |
A D | README.md | 4 supported on a specific Android device.
|
/AliOS-Things-master/components/jsoncpp/cmake/ |
A D | JoinPaths.cmake | 10 # Windows not supported
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | build_defs.bzl | 10 # We could be more aggressive in enabling supported warnings on each 23 # Not supported by MSVC.
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/ |
A D | Kconfig | 164 supported outgoing segment count (BT_MESH_TX_SEG_MAX). 217 requirement is 2 segments (24 bytes) whereas the maximum supported 225 Maximum number of segments supported for outgoing messages. 304 The contribution of the supported Receive Window used in 379 Receive Window in milliseconds supported by the Friend node. 382 int "Minimum number of buffers supported per Friend Queue" 394 Size of the Subscription List that can be supported by a 398 int "Number of supported LPN nodes"
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | config.h.in | 112 nothing if this is not supported. Do not define if restrict is 113 supported directly. */
|