/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_screen.h | 96 } tsc; member 194 nv50_screen_tsc_unlock(struct nv50_screen *screen, struct nv50_tsc_entry *tsc) in nv50_screen_tsc_unlock() argument 196 if (tsc->id >= 0) in nv50_screen_tsc_unlock() 197 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32)); in nv50_screen_tsc_unlock() 210 nv50_screen_tsc_free(struct nv50_screen *screen, struct nv50_tsc_entry *tsc) in nv50_screen_tsc_free() argument 212 if (tsc->id >= 0) { in nv50_screen_tsc_free() 213 screen->tsc.entries[tsc->id] = NULL; in nv50_screen_tsc_free() 214 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32)); in nv50_screen_tsc_free()
|
D | nv50_tex.c | 383 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nv50->samplers[s][i]); in nv50_validate_tsc() local 385 if (!tsc) { in nv50_validate_tsc() 393 nv50->seamless_cube_map = tsc->seamless_cube_map; in nv50_validate_tsc() 394 if (tsc->id < 0) { in nv50_validate_tsc() 395 tsc->id = nv50_screen_tsc_alloc(nv50->screen, tsc); in nv50_validate_tsc() 398 65536 + tsc->id * 32, in nv50_validate_tsc() 399 NOUVEAU_BO_VRAM, 32, tsc->tsc); in nv50_validate_tsc() 402 nv50->screen->tsc.lock[tsc->id / 32] |= 1 << (tsc->id % 32); in nv50_validate_tsc() 408 PUSH_DATA (push, (tsc->id << 12) | (i << 4) | 1); in nv50_validate_tsc()
|
D | nv50_state.c | 492 so->tsc[0] = (0x00026000 | in nv50_sampler_state_create() 499 so->tsc[1] = G80_TSC_1_MAG_FILTER_LINEAR; in nv50_sampler_state_create() 503 so->tsc[1] = G80_TSC_1_MAG_FILTER_NEAREST; in nv50_sampler_state_create() 509 so->tsc[1] |= G80_TSC_1_MIN_FILTER_LINEAR; in nv50_sampler_state_create() 513 so->tsc[1] |= G80_TSC_1_MIN_FILTER_NEAREST; in nv50_sampler_state_create() 519 so->tsc[1] |= G80_TSC_1_MIP_FILTER_LINEAR; in nv50_sampler_state_create() 522 so->tsc[1] |= G80_TSC_1_MIP_FILTER_NEAREST; in nv50_sampler_state_create() 526 so->tsc[1] |= G80_TSC_1_MIP_FILTER_NONE; in nv50_sampler_state_create() 532 so->tsc[1] |= GK104_TSC_1_CUBEMAP_INTERFACE_FILTERING; in nv50_sampler_state_create() 534 so->tsc[1] |= GK104_TSC_1_FLOAT_COORD_NORMALIZATION_FORCE_UNNORMALIZED_COORDS; in nv50_sampler_state_create() [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_screen.h | 103 } tsc; member 220 nvc0_screen_tsc_unlock(struct nvc0_screen *screen, struct nv50_tsc_entry *tsc) in nvc0_screen_tsc_unlock() argument 222 if (tsc->id >= 0) in nvc0_screen_tsc_unlock() 223 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32)); in nvc0_screen_tsc_unlock() 236 nvc0_screen_tsc_free(struct nvc0_screen *screen, struct nv50_tsc_entry *tsc) in nvc0_screen_tsc_free() argument 238 if (tsc->id >= 0) { in nvc0_screen_tsc_free() 239 screen->tsc.entries[tsc->id] = NULL; in nvc0_screen_tsc_free() 240 screen->tsc.lock[tsc->id / 32] &= ~(1 << (tsc->id % 32)); in nvc0_screen_tsc_free()
|
D | nvc0_tex.c | 632 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nvc0->samplers[s][i]); in nvc0_validate_tsc() local 636 if (!tsc) { in nvc0_validate_tsc() 640 nvc0->seamless_cube_map = tsc->seamless_cube_map; in nvc0_validate_tsc() 641 if (tsc->id < 0) { in nvc0_validate_tsc() 642 tsc->id = nvc0_screen_tsc_alloc(nvc0->screen, tsc); in nvc0_validate_tsc() 645 65536 + tsc->id * 32, NV_VRAM_DOMAIN(&nvc0->screen->base), in nvc0_validate_tsc() 646 32, tsc->tsc); in nvc0_validate_tsc() 649 nvc0->screen->tsc.lock[tsc->id / 32] |= 1 << (tsc->id % 32); in nvc0_validate_tsc() 651 commands[n++] = (tsc->id << 12) | (i << 4) | 1; in nvc0_validate_tsc() 690 struct nv50_tsc_entry *tsc = nv50_tsc_entry(nvc0->samplers[s][i]); in nve4_validate_tsc() local [all …]
|
/third_party/typescript/scripts/ |
D | bisect-test.ts | 11 function tsc(tscArgs: string, onExit: (exitCode: number) => void) { function 12 const tsc = cp.exec("node built/local/tsc.js " + tscArgs,() => void 0); constant 13 tsc.on("close", tscExitCode => { 24 tsc(args[0], tscExitCode => { 36 tsc(args[0], tscExitCode => {
|
/third_party/typescript/tests/baselines/reference/tsc/runWithoutArgs/initial-build/ |
D | show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.js | 8 /lib/tsc 10 Syntax: tsc [options] [file...] 12 Examples: tsc hello.ts 13 tsc --outFile file.js file.ts 14 tsc @args.txt 15 tsc --build tsconfig.json
|
/third_party/typescript/tests/baselines/reference/tsc/incremental/initial-build/ |
D | noEmit-changes-incremental.js | 50 /lib/tsc --p src/project 215 /lib/tsc --p src/project --noEmit 226 /lib/tsc --p src/project --noEmit 242 /lib/tsc --p src/project --noEmit 423 /lib/tsc --p src/project 531 /lib/tsc --p src/project 550 /lib/tsc --p src/project --noEmit 561 /lib/tsc --p src/project --noEmit 572 /lib/tsc --p src/project 596 /lib/tsc --p src/project [all …]
|
D | noEmit-changes-composite.js | 50 /lib/tsc --p src/project 244 /lib/tsc --p src/project --noEmit 255 /lib/tsc --p src/project --noEmit 271 /lib/tsc --p src/project --noEmit 460 /lib/tsc --p src/project 572 /lib/tsc --p src/project 591 /lib/tsc --p src/project --noEmit 602 /lib/tsc --p src/project --noEmit 613 /lib/tsc --p src/project 637 /lib/tsc --p src/project [all …]
|
D | noEmit-changes-incremental-declaration.js | 50 /lib/tsc --p src/project 245 /lib/tsc --p src/project --noEmit 256 /lib/tsc --p src/project --noEmit 272 /lib/tsc --p src/project --noEmit 462 /lib/tsc --p src/project 575 /lib/tsc --p src/project 594 /lib/tsc --p src/project --noEmit 605 /lib/tsc --p src/project --noEmit 616 /lib/tsc --p src/project 640 /lib/tsc --p src/project [all …]
|
D | with-only-dts-files.js | 29 /lib/tsc --incremental --p src/project 76 /lib/tsc --incremental --p src/project 90 /lib/tsc --incremental --p src/project
|
D | noEmit-changes-with-initial-noEmit-incremental.js | 50 /lib/tsc --p src/project --noEmit 175 /lib/tsc --p src/project 345 /lib/tsc --p src/project 534 /lib/tsc --p src/project --noEmit 643 /lib/tsc --p src/project
|
D | with-noEmitOnError-semantic-errors.js | 42 /lib/tsc --incremental -p src 149 /lib/tsc --incremental -p src 182 /lib/tsc --incremental -p src 269 /lib/tsc --incremental -p src
|
D | noEmit-changes-with-initial-noEmit-incremental-declaration.js | 50 /lib/tsc --p src/project --noEmit 176 /lib/tsc --p src/project 376 /lib/tsc --p src/project 575 /lib/tsc --p src/project --noEmit 693 /lib/tsc --p src/project
|
D | noEmit-changes-with-initial-noEmit-composite.js | 50 /lib/tsc --p src/project --noEmit 175 /lib/tsc --p src/project 374 /lib/tsc --p src/project 572 /lib/tsc --p src/project --noEmit 689 /lib/tsc --p src/project
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
D | Timer.cpp | 68 int64_t tsc; in ticks() 70 : "=A"(tsc)); in ticks() 71 return tsc; in ticks()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | sysinfo.cc | 237 int64_t tsc; // From UnscaledCycleClock::Now(). member 250 int64_t tsc = UnscaledCycleClockWrapperForInitializeFrequency::Now(); in GetTimeTscPair() local 256 best.tsc = tsc; in GetTimeTscPair() 271 double elapsed_ticks = t1.tsc - t0.tsc; in MeasureTscFrequencyWithSleep()
|
/third_party/typescript/tests/baselines/reference/docker/ |
D | office-ui-fabric.log | 23 @fluentui/digest: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.j… 24 …: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --module esnext… 28 @fluentui/scripts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.… 29 …: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --pretty --targ… 30 @fluentui/scripts: [XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.… 31 …: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --pretty --targ… 38 …XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-… 39 …: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --pretty --targ… 40 …XX:XX:XX XM] ■ Running /office-ui-fabric-react/node_modules/typescript/lib/tsc.js with /office-ui-… 41 …: /usr/local/bin/node "/office-ui-fabric-react/node_modules/typescript/lib/tsc.js" --pretty --targ… [all …]
|
/third_party/benchmark/src/ |
D | cycleclock.h | 182 uint64_t tsc; in Now() 185 asm(" stck %0" : "=m"(tsc) : : "cc"); in Now() 187 asm("stck %0" : "=Q"(tsc) : : "cc"); in Now() 189 return tsc; in Now()
|
/third_party/typescript/tests/baselines/reference/tsbuild/noEmitOnError/initial-build/ |
D | semantic-errors-with-incremental.js | 42 /lib/tsc --b /src/tsconfig.json --incremental 148 /lib/tsc --b /src/tsconfig.json --incremental 181 /lib/tsc --b /src/tsconfig.json --incremental 267 /lib/tsc --b /src/tsconfig.json --incremental
|
D | semantic-errors.js | 42 /lib/tsc --b /src/tsconfig.json 75 /lib/tsc --b /src/tsconfig.json 112 /lib/tsc --b /src/tsconfig.json 154 /lib/tsc --b /src/tsconfig.json
|
D | syntax-errors-with-incremental.js | 44 /lib/tsc --b /src/tsconfig.json --incremental 78 /lib/tsc --b /src/tsconfig.json --incremental 118 /lib/tsc --b /src/tsconfig.json --incremental 209 /lib/tsc --b /src/tsconfig.json --incremental
|
/third_party/typescript/tests/baselines/reference/tsbuild/outputPaths/initial-build/ |
D | when-rootDir-is-specified.js | 26 /lib/tsc --b /src/tsconfig.json -v 51 /lib/tsc --b /src/tsconfig.json -v 67 /lib/tsc -p /src/tsconfig.json
|
D | when-rootDir-is-not-specified.js | 26 /lib/tsc --b /src/tsconfig.json -v 51 /lib/tsc --b /src/tsconfig.json -v 67 /lib/tsc -p /src/tsconfig.json
|
D | when-rootDir-is-not-specified-and-is-composite.js | 26 /lib/tsc --b /src/tsconfig.json -v 85 /lib/tsc --b /src/tsconfig.json -v 101 /lib/tsc -p /src/tsconfig.json
|