/AliOS-Things-master/components/cjson/example/ |
A D | cjson_example.c | 51 const cJSON *resolution = NULL; in cjson_example() local 71 cJSON_ArrayForEach(resolution, resolutions) { in cjson_example() 72 cJSON *width = cJSON_GetObjectItemCaseSensitive(resolution, "width"); in cjson_example() 73 cJSON *height = cJSON_GetObjectItemCaseSensitive(resolution, "height"); in cjson_example()
|
/AliOS-Things-master/components/drivers/peripheral/adc/example/ |
A D | aos_adc_example.c | 19 uint32_t resolution = 0; in aos_adc_test_raw_data() local 36 ret = aos_adc_get_resolution(&ref, &resolution); in aos_adc_test_raw_data() 48 voltage = (data * range) / (1 << resolution); in aos_adc_test_raw_data()
|
/AliOS-Things-master/components/drivers/peripheral/adc/src/ |
A D | adc.c | 68 aos_status_t aos_adc_get_resolution(aos_adc_ref_t *ref, uint32_t *resolution) in aos_adc_get_resolution() argument 73 AOS_ADC_CHECK_NULL(resolution); in aos_adc_get_resolution() 77 *resolution = adc->resolution; in aos_adc_get_resolution() 181 if ((adc->resolution == 0) || (adc->freq == 0)) in aos_adc_register()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/addtiffo/ |
A D | README | 43 it doesn't copy geotiff tags to the reduced resolution images. 45 o Reduced resolution overviews for multi-sample files will currently 62 items are reduced resolution images. 75 Subfile Type: reduced-resolution image (1 = 0x1) 84 Subfile Type: reduced-resolution image (1 = 0x1) 93 Subfile Type: reduced-resolution image (1 = 0x1) 102 Subfile Type: reduced-resolution image (1 = 0x1)
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | ppm2tiff.c | 92 double resolution = -1; in main() local 122 resolution = atof(optarg); in main() 274 if (resolution > 0) { in main() 275 TIFFSetField(out, TIFFTAG_XRESOLUTION, resolution); in main() 276 TIFFSetField(out, TIFFTAG_YRESOLUTION, resolution); in main()
|
/AliOS-Things-master/components/freetype/ |
A D | README.md | 63 300, /* horizontal device resolution */ 64 300 ); /* vertical device resolution */
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/hal_ext/ |
A D | qdec_api.h | 83 …qdec_resolution resolution; /*!< The position accumulation counter. 0: 1 phase, 1: 2 p… member 133 void qdec_set_resolution (qdec_t *obj, qdec_resolution resolution);
|
/AliOS-Things-master/components/drivers/peripheral/adc/include/aos/ |
A D | adc.h | 88 aos_status_t aos_adc_get_resolution(aos_adc_ref_t *ref, uint32_t *resolution);
|
A D | adc_core.h | 34 uint32_t resolution; /**< ADC设备分辨率(单位:bits), 设备注册前必须赋值 */ member
|
/AliOS-Things-master/hardware/chip/rtl872xd/csi_driver/adc/ |
A D | adc.c | 246 adc_csi_dev.aos_adc.resolution = 12; in adc_csi_init()
|
/AliOS-Things-master/components/SDL2/src/video/uikit/ |
A D | SDL_uikitmetalview.m | 87 * yielding high resolution on retine displays.
|
A D | SDL_uikitwindow.m | 174 /* If monitor has a resolution of 0x0 (hasn't been explicitly set by the 175 * user, so it's in standby), try to force the display to a resolution
|
/AliOS-Things-master/components/freetype/src/sfnt/ |
A D | ttsbit.c | 259 FT_UInt offset, ppem, resolution, upem; in tt_face_load_strike_metrics() local 282 resolution = FT_GET_USHORT(); in tt_face_load_strike_metrics() 284 FT_UNUSED( resolution ); /* What to do with this? */ in tt_face_load_strike_metrics()
|
/AliOS-Things-master/components/ucamera/ |
A D | README.md | 142 /*set resolution*/
|
/AliOS-Things-master/solutions/ucloud_ai_demo/ |
A D | README.md | 102 /*set resolution*/
|
/AliOS-Things-master/components/littlevgl/ |
A D | README.md | 75 …- Display buffer: > *"Horizontal resolution"* pixels (> 10 × *"Horizontal resolution"…
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_xcf.c | 129 } resolution; member
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoamodes.m | 590 /* Fade to black to hide resolution-switching flicker */
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | change.log | 228 JFIF version and resolution information.
|
A D | libjpeg.txt | 998 The resolution information to be written into the JFIF marker; 1081 factors indicate a higher-resolution component; many people find 2802 you want fine resolution in the progress count. (If you really need to use
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/ |
A D | quickjs.texi | 310 ES6 modules are fully supported. The default name resolution is the
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | libpng-manual.txt | 1564 res_x - pixels/unit physical resolution in 1567 res_y - pixels/unit physical resolution in 3194 res_x - pixels/unit physical resolution 3197 res_y - pixels/unit physical resolution
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.c | 45821 JSValueConst resolution, args[3]; in js_promise_resolve_function_call() local 45831 resolution = argv[0]; in js_promise_resolve_function_call() 45833 resolution = JS_UNDEFINED; in js_promise_resolve_function_call() 45836 JS_DumpValue(ctx, resolution); in js_promise_resolve_function_call() 45839 if (is_reject || !JS_IsObject(resolution)) { in js_promise_resolve_function_call() 45841 } else if (js_same_value(ctx, resolution, s->promise)) { in js_promise_resolve_function_call() 45845 then = JS_GetProperty(ctx, resolution, JS_ATOM_then); in js_promise_resolve_function_call() 45855 fulfill_or_reject_promise(ctx, s->promise, resolution, is_reject); in js_promise_resolve_function_call() 45858 args[1] = resolution; in js_promise_resolve_function_call()
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | ChangeLog | 1024 is lost when library is used--resolution is to build new zconf.h
|
/AliOS-Things-master/components/SDL2/src/gfx/Docs/ |
A D | html.doxyfile | 514 # do proper type resolution of all parameters of a function it will reject a
|