/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoamodes.m | 176 CFMutableArrayRef modes; 229 CFRelease(modes); 240 CFRelease(modes); 250 CFRelease(modes); 286 CFRelease(modes); 289 data->modes = modes; 489 CFArrayRef modes; 541 if (modes) { 557 CFRelease(modes); 671 CFRelease(mode->modes); [all …]
|
A D | SDL_cocoamodes.h | 33 CFMutableArrayRef modes; member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | tree_dec.c | 317 uint8_t* modes = block->imodes_; in ParseIntraMode() local 345 memcpy(modes, top, 4 * sizeof(*top)); in ParseIntraMode() 346 modes += 4; in ParseIntraMode()
|
/AliOS-Things-master/components/drivers/peripheral/gpio/include/aos/ |
A D | gpioc_csi.h | 16 uint32_t modes[AOS_GPIOC_CSI_MAX_NUM_PINS]; member
|
/AliOS-Things-master/components/SDL2/src/video/x11/ |
A D | SDL_x11modes.c | 269 const XRRModeInfo *info = &res->modes[i]; in SetXRandRModeInfo() 830 XF86VidModeModeInfo ** modes; in X11_GetDisplayModes() local 908 … if (!SetXRandRModeInfo(display, res, output_info->crtc, output_info->modes[i], &mode) || in X11_GetDisplayModes() 923 X11_XF86VidModeGetAllModeLines(display, data->vidmode_screen, &nmodes, &modes)) { in X11_GetDisplayModes() 931 modes[i]->hdisplay, modes[i]->vdisplay, in X11_GetDisplayModes() 932 CalculateXVidModeRefreshRate(modes[i]), modes[i]->flags); in X11_GetDisplayModes() 942 if (!SetXVidModeModeInfo(modes[i], &mode) || !SDL_AddDisplayMode(sdl_display, &mode)) { in X11_GetDisplayModes() 946 X11_XFree(modes); in X11_GetDisplayModes()
|
/AliOS-Things-master/components/jsoncpp/test/data/ |
A D | legacy_test_real_09.json | 1 // Out of 64-bit integer range, switch to double in all modes. Length the same
|
A D | legacy_test_real_09.expected | 1 // Out of 64-bit integer range, switch to double in all modes. Length the same
|
A D | legacy_test_real_10.expected | 1 // Out of 32-bit signed integer range, switch to double in all modes. Length
|
A D | legacy_test_real_10.json | 1 // Out of 32-bit signed integer range, switch to double in all modes. Length
|
A D | legacy_test_real_11.json | 1 // Out of 64-bit signed integer range, switch to double in all modes. Length
|
A D | legacy_test_real_11.expected | 1 // Out of 64-bit signed integer range, switch to double in all modes. Length
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | analysis_enc.c | 282 const uint8_t modes[16] = { 0 }; // DC4 in FastMBAnalyze() local 283 VP8SetIntra4Mode(it, modes); in FastMBAnalyze() 290 uint8_t modes[16]; in MBAnalyzeBestIntra4Mode() local 314 modes[it->i4_] = mode; in MBAnalyzeBestIntra4Mode() 325 VP8SetIntra4Mode(it, modes); in MBAnalyzeBestIntra4Mode()
|
A D | iterator_enc.c | 341 void VP8SetIntra4Mode(const VP8EncIterator* const it, const uint8_t* modes) { in VP8SetIntra4Mode() argument 345 memcpy(preds, modes, 4 * sizeof(*modes)); in VP8SetIntra4Mode() 347 modes += 4; in VP8SetIntra4Mode()
|
A D | predictor_enc.c | 305 const uint32_t* const modes) { in GetBestPredictorForTile() argument 323 (modes[tile_y * tiles_per_row + tile_x - 1] >> 8) & 0xff : 0xff; in GetBestPredictorForTile() 325 (modes[(tile_y - 1) * tiles_per_row + tile_x] >> 8) & 0xff : 0xff; in GetBestPredictorForTile() 414 int bits, uint32_t* const modes, in CopyImageWithPrediction() argument 459 (modes[(y >> bits) * tiles_per_row + (x >> bits)] >> 8) & 0xff; in CopyImageWithPrediction()
|
A D | vp8i_enc.h | 303 void VP8SetIntra4Mode(const VP8EncIterator* const it, const uint8_t* modes);
|
A D | quant_enc.c | 1037 const uint8_t modes[16]) { in GetCostModeI4() 1040 const int left = (x == 0) ? it->preds_[y * preds_w - 1] : modes[it->i4_ - 1]; in GetCostModeI4() 1041 const int top = (y == 0) ? it->preds_[-preds_w + x] : modes[it->i4_ - 4]; in GetCostModeI4()
|
/AliOS-Things-master/components/drivers/peripheral/gpio/src/ |
A D | gpioc_csi.c | 93 uint32_t mode = gpioc_csi->modes[pin]; in restore_mode() 174 gpioc_csi->modes[pin] = mode; in gpioc_csi_set_mode() 260 gpioc_csi->modes[i] = AOS_GPIO_DIR_NONE; in aos_gpioc_csi_register()
|
/AliOS-Things-master/components/SDL2/src/video/kmsdrm/ |
A D | SDL_kmsdrmvideo.c | 588 dispdata->mode = dispdata->conn->modes[0]; in KMSDRM_VideoInit() 608 …if (!SDL_memcmp(dispdata->conn->modes + i, &dispdata->saved_crtc->mode, sizeof(drmModeModeInfo))) { in KMSDRM_VideoInit() 724 mode.w = conn->modes[i].hdisplay; in KMSDRM_GetDisplayModes() 725 mode.h = conn->modes[i].vdisplay; in KMSDRM_GetDisplayModes() 726 mode.refresh_rate = conn->modes[i].vrefresh; in KMSDRM_GetDisplayModes() 748 dispdata->mode = conn->modes[modedata->mode_index]; in KMSDRM_SetDisplayMode()
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_video.c | 777 SDL_DisplayMode *modes; in SDL_AddDisplayMode() local 781 modes = display->display_modes; in SDL_AddDisplayMode() 784 if (cmpmodes(mode, &modes[i]) == 0) { in SDL_AddDisplayMode() 791 modes = in SDL_AddDisplayMode() 792 SDL_realloc(modes, in SDL_AddDisplayMode() 793 (display->max_display_modes + 32) * sizeof(*modes)); in SDL_AddDisplayMode() 794 if (!modes) { in SDL_AddDisplayMode() 797 display->display_modes = modes; in SDL_AddDisplayMode() 800 modes[nmodes] = *mode; in SDL_AddDisplayMode()
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | config.h.bak | 646 * specific padding modes in the cipher layer with cipher modes that support 651 * Enable padding modes in the cipher layer. 763 * Enable the PSK based ciphersuite modes in SSL / TLS. 785 * Enable the DHE-PSK based ciphersuite modes in SSL / TLS. 816 * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS. 836 * Enable the RSA-PSK based ciphersuite modes in SSL / TLS. 861 * Enable the RSA-only based ciphersuite modes in SSL / TLS. 889 * Enable the DHE-RSA based ciphersuite modes in SSL / TLS. 995 * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS. 1019 * Enable the ECJPAKE based ciphersuite modes in SSL / TLS. [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/mlir/testing/ |
A D | build_def.bzl | 103 """Returns a list of conversion modes."""
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/ |
A D | algorithm.txt | 52 modes (level parameter 1 to 3). For these fast modes, new strings
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | ChangeLog | 87 * fixed zoom XY-flip code and made it available for all modes in 89 * fixed edge issue on interpolated rotozoom modes
|
/AliOS-Things-master/components/mbedtls/ |
A D | README.mbedtls.md | 80 There are many different build modes available within the CMake buildsystem. Most of them are avail… 91 Switching build modes in CMake is simple. For debug mode, enter at the command line:
|
/AliOS-Things-master/hardware/chip/haas1000/ |
A D | _haas1000_alios_sec_b.lds | 726 *:modes.o(.text*) 779 *:modes.o(.data* .rodata*) 912 *:modes.o(.data* .rodata*) 1062 *:modes.o(.bss*)
|