/third_party/node/test/parallel/ |
D | test-performance-eventlooputil.js | 18 assert.deepStrictEqual(elu, { idle: 0, active: 0, utilization: 0 }); property 20 { idle: 0, active: 0, utilization: 0 }); property 22 { idle: 0, active: 0, utilization: 0 }); property 50 assert.strictEqual(elu3.active - elu1.active, elu4.active); 51 assert.ok(elu2.active > SPIN_DUR - 10, `${elu2.active} <= ${SPIN_DUR - 10}`); 52 assert.ok(elu2.active < elu4.active, `${elu2.active} >= ${elu4.active}`); 53 assert.ok(elu3.active > elu2.active, `${elu3.active} <= ${elu2.active}`); 54 assert.ok(elu3.active > elu4.active, `${elu3.active} <= ${elu4.active}`); 62 const sum = elu1.idle + elu1.active; 64 assert.ok(sum >= elu1.idle && sum >= elu1.active, [all …]
|
/third_party/node/lib/internal/perf/ |
D | event_loop_utilization.js | 11 return { idle: 0, active: 0, utilization: 0 }; 16 const active = util1.active - util2.active; 17 return { idle, active, utilization: active / (idle + active) }; 21 const active = now() - ls - idle; 24 return { idle, active, utilization: active / (idle + active) }; 28 const active_delta = active - util1.active; 30 return { idle: idle_delta, active: active_delta, utilization };
|
/third_party/mbedtls/scripts/ |
D | config.py | 45 def __init__(self, active, name, value='', section=None): argument 46 self.active = active 77 return name in self.settings and self.settings[name].active 128 self.settings[name].active = True 139 self.settings[name].active = False 152 setting.active = adapter(setting.name, setting.active, 162 setting.active = enable 168 def realfull_adapter(_name, active, section): argument 179 return active 246 def full_adapter(name, active, section): argument [all …]
|
/third_party/node/deps/npm/node_modules/promise-inflight/ |
D | inflight.js | 11 const active = {} constant 12 inflight.active = active 27 if (!active[unique]) { 28 active[unique] = (new Bluebird(function (resolve) { 31 active[unique].then(cleanup, cleanup) 32 function cleanup() { delete active[unique] } 34 return active[unique]
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_program_interface_query.txt | 95 This extension defines two terms: interfaces and active resources. Each 106 set of active resources used by the program. For example, the resources 107 of a program's input interface includes all active input variables used by 211 linked, the GL builds a list of /active resources/ for each interface. 212 Examples of active resources include variables, interface blocks, and 214 considered /active/ unless the compiler and linker can conclusively 222 resource referenced by shader code will be considered active. The set of 223 active resources on for any interface is implementation-dependent because 227 If a program is linked successfully, the GL will generate lists of active 233 active had the program linked successfully. If an implementation does not [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_program_interface_query.txt | 85 This extension defines two terms: interfaces and active resources. Each 96 set of active resources used by the program. For example, the resources 97 of a program's input interface includes all active input variables used by 201 linked, the GL builds a list of /active resources/ for each interface. 202 Examples of active resources include variables, interface blocks, and 204 considered /active/ unless the compiler and linker can conclusively 212 resource referenced by shader code will be considered active. The set of 213 active resources on for any interface is implementation-dependent because 217 If a program is linked successfully, the GL will generate lists of active 223 active had the program linked successfully. If an implementation does not [all …]
|
D | ARB_transform_feedback2.txt | 115 shader is active, the vertices recorded are those emitted from the geometry 125 shader is active, the set of attributes captured in transform feedback 126 mode is determined using the state of the active program object; 149 deleted. If an active transform feedback object is deleted its name 151 until it is no longer active 158 currently active. 189 transform feedback operation is active on the currently bound transform 209 respectively. Transform feedback is said to be active after a call to 216 generated by BeginTransformFeedback if transform feedback is active, and 230 feedback is still considered active and changing most transform feedback [all …]
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_shader_ballot.txt | 87 specified value <v> across all active shader invocations in the sub-group 130 …ocationsAMD(genType v) | Returns the minimum value of <v> across all active shader | 135 …ocationsNonUniformAMD(genType v) | Returns the minimum value of <v> across all active shader | 140 …ocationsInclusiveScanAMD(genType v) | Returns the minimum value of <v> across all active shader | 149 …ocationsInclusiveScanNonUniformAMD( | Returns the minimum value of <v> across all active shader | 158 …ocationsExclusiveScanAMD(genType v) | Returns the minimum value of <v> across all active shader | 167 …ocationsExclusiveScanNonUniformAMD( | Returns the minimum value of <v> across all active shader | 176 …ocationsAMD(genType v) | Returns the maximum value of <v> across all active shader | 181 …ocationsNonUniformAMD(genType v) | Returns the maximum value of <v> across all active shader | 186 …ocationsInclusiveScanAMD(genType v) | Returns the maximum value of <v> across all active shader | [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_shader_ballot.txt | 87 specified value <v> across all active shader invocations in the sub-group 130 …ocationsAMD(genType v) | Returns the minimum value of <v> across all active shader | 135 …ocationsNonUniformAMD(genType v) | Returns the minimum value of <v> across all active shader | 140 …ocationsInclusiveScanAMD(genType v) | Returns the minimum value of <v> across all active shader | 149 …ocationsInclusiveScanNonUniformAMD( | Returns the minimum value of <v> across all active shader | 158 …ocationsExclusiveScanAMD(genType v) | Returns the minimum value of <v> across all active shader | 167 …ocationsExclusiveScanNonUniformAMD( | Returns the minimum value of <v> across all active shader | 176 …ocationsAMD(genType v) | Returns the maximum value of <v> across all active shader | 181 …ocationsNonUniformAMD(genType v) | Returns the maximum value of <v> across all active shader | 186 …ocationsInclusiveScanAMD(genType v) | Returns the maximum value of <v> across all active shader | [all …]
|
/third_party/ltp/pan/ |
D | ltp-bump.c | 48 char *active = NULL; in main() local 56 active = malloc(strlen(optarg) + 1); in main() 57 strcpy(active, optarg); in main() 71 if (active == NULL) { in main() 72 active = zoo_getname(); in main() 73 if (active == NULL) { in main() 86 if ((zoo = zoo_open(active)) == NULL) { in main()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | Queries.md | 4 `GL_PRIMITIVES_GENERATED`. Some Vulkan queries are active only inside a render pass, while others 9 The following queries are recorded outside a render pass. If a render pass is active when 17 The rest of the queries are active only inside render passes. The context (`ContextVk`) keeps track 18 of currently active "render pass queries" and automatically pauses and resumes them as render passes 28 active queries. 30 active queries. 37 active. 48 If a clear is performed while a render pass query is active and if that clear needs to take a 63 be active at a time. This forces ANGLE to have the two GL queries share their Vulkan queries when 64 both transform feedback queries are active. [all …]
|
/third_party/node/deps/npm/node_modules/promise-call-limit/dist/esm/ |
D | index.js | 10 let active = 0; variable 26 if (resolved || active > 0) 35 active++; 43 active--; 47 active--; 51 if (rejected && active === 0)
|
/third_party/node/lib/internal/ |
D | worker.js | 503 return { idle: 0, active: 0, utilization: 0 }; 510 return { idle: 0, active: 0, utilization: 0 }; 515 const active = util1.active - util2.active; 516 return { idle, active, utilization: active / (idle + active) }; 525 const active = now() - this[kLoopStartTime] - idle; 528 return { idle, active, utilization: active / (idle + active) }; 532 const active_delta = active - util1.active; 534 return { idle: idle_delta, active: active_delta, utilization };
|
/third_party/libinput/test/ |
D | litest-device-protocol-a-touch-screen.c | 33 bool active; member 68 assert(!s->active); in protocolA_down() 69 s->active = true; in protocolA_down() 74 if (!s->active) in protocolA_down() 112 assert(s->active); in protocolA_move() 116 if (!s->active) in protocolA_move() 149 assert(s->active); in protocolA_up() 150 s->active = false; in protocolA_up() 154 if (!s->active) in protocolA_up()
|
/third_party/node/lib/ |
D | domain.js | 156 if (exports.active && domain) 209 exports.active = process.domain = null; 234 exports.active = null; 255 while (exports.active === this) { 302 exports.active = process.domain = stack[stack.length - 1]; 323 exports.active = process.domain = this; 337 exports.active = stack.length === 0 ? undefined : stack[stack.length - 1]; 338 process.domain = exports.active; 470 if (exports.active && !(this instanceof exports.Domain)) { 471 this.domain = exports.active; [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_fetch_shade_emit.c | 61 struct draw_vs_variant *active; member 146 fse->active = draw_vs_lookup_variant(draw->vs.vertex_shader, &fse->key); in fse_prepare() 148 if (!fse->active) { in fse_prepare() 154 fse->active->key.const_vbuffers); in fse_prepare() 159 fse->active->set_buffer(fse->active, in fse_prepare() 214 fse->active->run_linear(fse->active, start, count, hw_verts); in fse_run_linear() 273 fse->active->run_elts(fse->active, fetch_elts, fetch_count, hw_verts); in fse_run() 326 fse->active->run_linear(fse->active, start, count, hw_verts); in fse_run_linear_elts()
|
/third_party/selinux/libselinux/utils/ |
D | getsebool.c | 17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; in main() local 75 active = security_get_boolean_active(names[i]); in main() 76 if (active < 0) { in main() 98 if (pending != active) { in main() 100 (active ? "on" : "off"), in main() 104 (active ? "on" : "off")); in main()
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | CollectVariables_test.cpp | 118 EXPECT_TRUE(outputVariable.active); in validateOutputVariableForShader() 139 EXPECT_FALSE(uniform.active); in checkUniformStaticallyUsedButNotActive() 261 EXPECT_TRUE(outputVariable.active); in TEST_F() 287 EXPECT_TRUE(outputVariable.active); in TEST_F() 312 EXPECT_TRUE(attribute.active); in TEST_F() 339 EXPECT_TRUE(interfaceBlock.active); in TEST_F() 347 EXPECT_TRUE(field.active); in TEST_F() 377 EXPECT_TRUE(interfaceBlock.active); in TEST_F() 385 EXPECT_TRUE(field.active); in TEST_F() 416 EXPECT_TRUE(interfaceBlock.active); in TEST_F() [all …]
|
/third_party/libinput/doc/api/style/ |
D | bootstrap.css | 56 a:active, 1167 .sr-only-focusable:active, 2342 .table > thead > tr > td.active, 2343 .table > tbody > tr > td.active, 2344 .table > tfoot > tr > td.active, 2345 .table > thead > tr > th.active, 2346 .table > tbody > tr > th.active, 2347 .table > tfoot > tr > th.active, 2348 .table > thead > tr.active > td, 2349 .table > tbody > tr.active > td, [all …]
|
/third_party/libevdev/doc/html/ |
D | bootstrap.css | 56 a:active, 1167 .sr-only-focusable:active, 2342 .table > thead > tr > td.active, 2343 .table > tbody > tr > td.active, 2344 .table > tfoot > tr > td.active, 2345 .table > thead > tr > th.active, 2346 .table > tbody > tr > th.active, 2347 .table > tfoot > tr > th.active, 2348 .table > thead > tr.active > td, 2349 .table > tbody > tr.active > td, [all …]
|
/third_party/libevdev/doc/style/ |
D | bootstrap.css | 56 a:active, 1167 .sr-only-focusable:active, 2342 .table > thead > tr > td.active, 2343 .table > tbody > tr > td.active, 2344 .table > tfoot > tr > td.active, 2345 .table > thead > tr > th.active, 2346 .table > tbody > tr > th.active, 2347 .table > tfoot > tr > th.active, 2348 .table > thead > tr.active > td, 2349 .table > tbody > tr.active > td, [all …]
|
/third_party/python/Lib/distutils/command/ |
D | bdist_msi.py | 42 def back(self, title, next, name = "Back", active = 1): argument 47 if active: 53 def cancel(self, title, next, name = "Cancel", active = 1): argument 58 if active: 64 def next(self, title, next, name = "Next", active = 1): argument 69 if active: 473 fatal.back("< Back", "Finish", active = 0) 474 fatal.cancel("Cancel", "Back", active = 0) 485 user_exit.back("< Back", "Finish", active = 0) 486 user_exit.cancel("Cancel", "Back", active = 0) [all …]
|
/third_party/node/deps/npm/node_modules/promise-call-limit/dist/commonjs/ |
D | index.js | 36 let active = 0; variable 52 if (resolved || active > 0) 61 active++; 69 active--; 73 active--; 77 if (rejected && active === 0)
|
/third_party/openGLES/extensions/NV/ |
D | NV_transform_feedback2.txt | 100 shader or program is active, the vertices recorded are those emitted from 110 shader is active, the set of attributes captured in transform feedback 111 mode is determined using the state of the active program object; 145 a transform feedback operation is active on the currently bound transform 158 currently active. 184 respectively. Transform feedback is said to be active after a call to 191 generated by BeginTransformFeedbackEXT if transform feedback is active, 205 feedback is still considered active and changing most transform feedback 209 currently bound transform feedback is not active or is paused. The error 211 currently bound transform feedback is not active or is not paused. [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_transform_feedback2.txt | 100 shader or program is active, the vertices recorded are those emitted from 110 shader is active, the set of attributes captured in transform feedback 111 mode is determined using the state of the active program object; 145 a transform feedback operation is active on the currently bound transform 158 currently active. 184 respectively. Transform feedback is said to be active after a call to 191 generated by BeginTransformFeedbackEXT if transform feedback is active, 205 feedback is still considered active and changing most transform feedback 209 currently bound transform feedback is not active or is paused. The error 211 currently bound transform feedback is not active or is not paused. [all …]
|