/third_party/ltp/testcases/kernel/syscalls/clock_adjtime/ |
D | clock_adjtime01.c | 64 unsigned int modes; member 71 .modes = ADJ_OFFSET_SINGLESHOT, 74 .modes = ADJ_OFFSET_SS_READ, 77 .modes = ADJ_ALL, 80 .modes = ADJ_OFFSET, 85 .modes = ADJ_FREQUENCY, 89 .modes = ADJ_MAXERROR, 93 .modes = ADJ_ESTERROR, 97 .modes = ADJ_TIMECONST, 101 .modes = ADJ_TICK, [all …]
|
D | clock_adjtime02.c | 69 unsigned int modes; member 88 .modes = ADJ_ALL, 93 .modes = ADJ_TICK, 100 .modes = ADJ_TICK, 107 .modes = ADJ_ALL, 153 timex_set_field_uint(txcptr, ADJ_MODES, tc[i].modes); in verify_clock_adjtime() 157 timex_set_field_long(&ttxc, tc[i].modes, tc[i].lowlimit - tc[i].delta); in verify_clock_adjtime() 160 timex_set_field_long(&ttxc, tc[i].modes, tc[i].highlimit + tc[i].delta); in verify_clock_adjtime() 173 "uid=%d)", tc[i].modes, whoami); in verify_clock_adjtime() 180 tc[i].exp_err, TST_ERR, tc[i].modes, whoami); in verify_clock_adjtime() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleVisibilityTest3.symbols | 21 import modes = _modes; 22 >modes : Symbol(modes, Decl(moduleVisibilityTest3.ts, 12, 15)) 23 >_modes : Symbol(modes, Decl(moduleVisibilityTest3.ts, 0, 0)) 25 var i : modes.IMode; 27 >modes : Symbol(modes, Decl(moduleVisibilityTest3.ts, 12, 15)) 28 >IMode : Symbol(modes.IMode, Decl(moduleVisibilityTest3.ts, 0, 15)) 30 // If you just use p1:modes, the compiler accepts it - should be an error 34 constructor(p1: modes, p2: modes.Mode) {// should be an error on p2 - it's not exported 37 >modes : Symbol(modes, Decl(moduleVisibilityTest3.ts, 12, 15)) 39 var x:modes.Mode; [all …]
|
D | moduleVisibilityTest3.types | 20 import modes = _modes; 21 >modes : typeof modes 22 >_modes : typeof modes 24 var i : modes.IMode; 25 >i : modes.IMode 26 >modes : any 28 // If you just use p1:modes, the compiler accepts it - should be an error 32 constructor(p1: modes, p2: modes.Mode) {// should be an error on p2 - it's not exported 35 >modes : any 37 var x:modes.Mode; [all …]
|
D | moduleAliasInterface.types | 20 import modes = _modes; 21 >modes : typeof modes 22 >_modes : typeof modes 24 var i : modes.IMode; 25 >i : modes.IMode 26 >modes : any 28 // If you just use p1:modes, the compiler accepts it - should be an error 32 constructor(p1: modes.IMode, p2: modes.Mode) { }// should be an error on p2 - it's not exported 33 >p1 : modes.IMode 34 >modes : any [all …]
|
D | moduleAliasInterface.symbols | 21 import modes = _modes; 22 >modes : Symbol(modes, Decl(moduleAliasInterface.ts, 12, 15)) 23 >_modes : Symbol(modes, Decl(moduleAliasInterface.ts, 0, 0)) 25 var i : modes.IMode; 27 >modes : Symbol(modes, Decl(moduleAliasInterface.ts, 12, 15)) 28 >IMode : Symbol(modes.IMode, Decl(moduleAliasInterface.ts, 0, 15)) 30 // If you just use p1:modes, the compiler accepts it - should be an error 34 constructor(p1: modes.IMode, p2: modes.Mode) { }// should be an error on p2 - it's not exported 36 >modes : Symbol(modes, Decl(moduleAliasInterface.ts, 12, 15)) 37 >IMode : Symbol(modes.IMode, Decl(moduleAliasInterface.ts, 0, 15)) [all …]
|
D | moduleVisibilityTest3.errors.txt | 1 tests/cases/compiler/moduleVisibilityTest3.ts(20,22): error TS2709: Cannot use namespace 'modes' as… 20 import modes = _modes; 22 var i : modes.IMode; 24 // If you just use p1:modes, the compiler accepts it - should be an error 26 constructor(p1: modes, p2: modes.Mode) {// should be an error on p2 - it's not exported 28 !!! error TS2709: Cannot use namespace 'modes' as a type. 31 var x:modes.Mode;
|
D | moduleVisibilityTest3.js | 15 import modes = _modes; 17 var i : modes.IMode; 21 constructor(p1: modes, p2: modes.Mode) {// should be an error on p2 - it's not exported argument 22 var x:modes.Mode;
|
D | moduleCrashBug1.types | 18 import modes = _modes; 19 >modes : typeof modes 20 >_modes : typeof modes
|
D | moduleAliasInterface.js | 15 import modes = _modes; 17 var i : modes.IMode; 21 constructor(p1: modes.IMode, p2: modes.Mode) { }// should be an error on p2 - it's not exported 22 public foo(p1:modes.IMode) {
|
D | moduleCrashBug1.symbols | 21 import modes = _modes; 22 >modes : Symbol(modes, Decl(moduleCrashBug1.ts, 12, 15)) 23 >_modes : Symbol(modes, Decl(moduleCrashBug1.ts, 0, 0))
|
/third_party/flutter/glfw/src/ |
D | mir_monitor.c | 65 monitors[i]->modes = _glfwPlatformGetVideoModes(monitors[i], in _glfwPlatformGetMonitors() 125 GLFWvidmode* modes = NULL; in _glfwPlatformGetVideoModes() local 135 modes = calloc(out->num_modes, sizeof(GLFWvidmode)); in _glfwPlatformGetVideoModes() 139 modes[*found].width = out->modes[*found].horizontal_resolution; in _glfwPlatformGetVideoModes() 140 modes[*found].height = out->modes[*found].vertical_resolution; in _glfwPlatformGetVideoModes() 141 modes[*found].refreshRate = out->modes[*found].refresh_rate; in _glfwPlatformGetVideoModes() 143 FillInRGBBitsFromPixelFormat(&modes[*found], out->output_formats[*found]); in _glfwPlatformGetVideoModes() 151 return modes; in _glfwPlatformGetVideoModes() 156 *mode = monitor->modes[monitor->mir.cur_mode]; in _glfwPlatformGetVideoMode()
|
D | wl_monitor.c | 78 _GLFWvidmodeWayland* modes = in mode() local 79 realloc(monitor->wl.modes, in mode() 81 monitor->wl.modes = modes; in mode() 85 monitor->wl.modes[monitor->wl.modesCount++] = mode; in mode() 145 monitor->wl.modes = calloc(4, sizeof(_GLFWvidmodeWayland)); in _glfwAddOutputWayland() 188 monitor->modes = in _glfwPlatformGetMonitors() 218 GLFWvidmode *modes; in _glfwPlatformGetVideoModes() local 221 modes = calloc(modesCount, sizeof(GLFWvidmode)); in _glfwPlatformGetVideoModes() 224 modes[i] = monitor->wl.modes[i].base; in _glfwPlatformGetVideoModes() 227 return modes; in _glfwPlatformGetVideoModes() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/WSI/ |
D | DisplaySurfaceKHR.cpp | 37 pProperties->displayMode = (uintptr_t)connector->modes[0].name; in GetDisplayModeProperties() 38 pProperties->parameters.visibleRegion.width = connector->modes[0].hdisplay; in GetDisplayModeProperties() 39 pProperties->parameters.visibleRegion.height = connector->modes[0].vdisplay; in GetDisplayModeProperties() 40 pProperties->parameters.refreshRate = connector->modes[0].vrefresh * 1000; in GetDisplayModeProperties() 59 pCapabilities->minSrcExtent.width = connector->modes[0].hdisplay; in GetDisplayPlaneCapabilities() 60 pCapabilities->minSrcExtent.height = connector->modes[0].vdisplay; in GetDisplayPlaneCapabilities() 61 pCapabilities->maxSrcExtent.width = connector->modes[0].hdisplay; in GetDisplayPlaneCapabilities() 62 pCapabilities->maxSrcExtent.height = connector->modes[0].vdisplay; in GetDisplayPlaneCapabilities() 67 pCapabilities->minDstExtent.width = connector->modes[0].hdisplay; in GetDisplayPlaneCapabilities() 68 pCapabilities->minDstExtent.height = connector->modes[0].vdisplay; in GetDisplayPlaneCapabilities() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleVisibilityTest3.ts | 14 import modes = _modes; 16 var i : modes.IMode; 20 constructor(p1: modes, p2: modes.Mode) {// should be an error on p2 - it's not exported 21 var x:modes.Mode;
|
D | moduleAliasInterface.ts | 14 import modes = _modes; 16 var i : modes.IMode; 20 constructor(p1: modes.IMode, p2: modes.Mode) { }// should be an error on p2 - it's not exported 21 public foo(p1:modes.IMode) {
|
/third_party/uboot/u-boot-2020.01/arch/arm/mach-imx/ |
D | cmd_bmode.c | 12 static const struct boot_mode *modes[2]; variable 18 for (i = 0; i < ARRAY_SIZE(modes); i++) { in search_modes() 19 const struct boot_mode *p = modes[i]; in search_modes() 36 for (i = 0; i < ARRAY_SIZE(modes); i++) { in create_usage() 37 const struct boot_mode *p = modes[i]; in create_usage() 97 modes[0] = p; in add_board_boot_modes() 98 modes[1] = soc_boot_modes; in add_board_boot_modes()
|
/third_party/musl/src/linux/ |
D | clock_adjtime.c | 9 unsigned modes; member 25 unsigned modes; member 42 (utx->modes & ADJ_SETOFFSET) && !IS32BIT(utx->time.tv_sec)) { in clock_adjtime() 44 .modes = utx->modes, in clock_adjtime() 68 utx->modes = ktx.modes; in clock_adjtime() 93 if ((utx->modes & ADJ_SETOFFSET) && !IS32BIT(utx->time.tv_sec)) in clock_adjtime() 98 .modes = utx->modes, in clock_adjtime() 126 utx->modes = ktx.modes; in clock_adjtime()
|
/third_party/ltp/testcases/kernel/syscalls/chmod/ |
D | chmod02.c | 51 static int modes[] = { 0, 07, 070, 0700, 0777, 02777, 04777, 06777 }; variable 54 int TST_TOTAL = ARRAY_SIZE(modes); 75 TEST(chmod(FNAME, modes[i])); in main() 79 "chmod(%s, %#o) failed", FNAME, modes[i]); in main() 83 FNAME, modes[i], TEST_RETURN); in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_derivatives.cpp | 81 const auto* modes = state.GetExecutionModes(entry_point->id()); in DerivativesPass() local 84 (!modes || in DerivativesPass() 85 (modes->find(SpvExecutionModeDerivativeGroupLinearNV) == in DerivativesPass() 86 modes->end() && in DerivativesPass() 87 modes->find(SpvExecutionModeDerivativeGroupQuadsNV) == in DerivativesPass() 88 modes->end()))) { in DerivativesPass()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
D | validate_derivatives.cpp | 81 const auto* modes = state.GetExecutionModes(entry_point->id()); in DerivativesPass() local 84 (!modes || in DerivativesPass() 85 (modes->find(SpvExecutionModeDerivativeGroupLinearNV) == in DerivativesPass() 86 modes->end() && in DerivativesPass() 87 modes->find(SpvExecutionModeDerivativeGroupQuadsNV) == in DerivativesPass() 88 modes->end()))) { in DerivativesPass()
|
/third_party/openssl/ |
D | create_asm_file.sh | 25 rm -rf crypto/modes/asm/arm32 27 mkdir crypto/modes/asm/arm32 37 perl crypto/modes/asm/ghash-armv4.pl void crypto/modes/asm/arm32/ghash-armv4.S 38 perl crypto/modes/asm/ghashv8-armx.pl void crypto/modes/asm/arm32/ghashv8-armx.S 46 rm -rf crypto/modes/asm/arm64 48 mkdir crypto/modes/asm/arm64 56 perl crypto/modes/asm/ghashv8-armx.pl linux64 crypto/modes/asm/arm64/ghashv8-armx.S
|
/third_party/openssl/crypto/evp/ |
D | build.info | 17 INCLUDE[e_aes.o]=.. ../modes 18 INCLUDE[e_aes_cbc_hmac_sha1.o]=../modes 19 INCLUDE[e_aes_cbc_hmac_sha256.o]=../modes 20 INCLUDE[e_aria.o]=.. ../modes 21 INCLUDE[e_camellia.o]=.. ../modes 22 INCLUDE[e_sm4.o]=.. ../modes
|
/third_party/ltp/testcases/kernel/syscalls/getrandom/ |
D | getrandom02.c | 15 static int modes[] = { 0, GRND_RANDOM, GRND_NONBLOCK, variable 52 TEST(tst_syscall(__NR_getrandom, buf, bufsize, modes[n])); in verify_getrandom() 53 } while ((modes[n] & GRND_NONBLOCK) && TST_RET == -1 in verify_getrandom() 63 .tcnt = ARRAY_SIZE(modes),
|
D | getrandom01.c | 12 static int modes[] = {0, GRND_RANDOM, GRND_NONBLOCK, variable 17 TEST(tst_syscall(__NR_getrandom, NULL, 100, modes[n])); in verify_getrandom() 28 .tcnt = ARRAY_SIZE(modes),
|