| /third_party/alsa-lib/src/pcm/scopes/ |
| D | level.c | 2 * PCM - Meter level plugin (ncurses) 32 int16_t level; member 51 snd_pcm_scope_level_t *level = snd_pcm_scope_get_callback_private(scope); in level_enable() local 53 level->channels = calloc(snd_pcm_meter_get_channels(level->pcm), sizeof(*level->channels)); in level_enable() 54 if (!level->channels) { in level_enable() 55 free(level); in level_enable() 58 snd_pcm_scope_set_callback_private(scope, level); in level_enable() 59 level->win = initscr(); in level_enable() 60 winsdelln(level->win, snd_pcm_meter_get_channels(level->pcm)); in level_enable() 61 getyx(level->win, y, x); in level_enable() [all …]
|
| /third_party/musl/libc-test/src/functionalext/unittest/ |
| D | unit_test_ldso_namespace.c | 28 * @tc.level : Level 2 39 * @tc.level : Level 0 68 * @tc.level : Level 2 90 * @tc.level : Level 2 101 * @tc.level : Level 2 113 * @tc.level : Level 2 125 * @tc.level : Level 1 142 * @tc.level : Level 1 170 * @tc.level : Level 2 181 * @tc.level : Level 2 [all …]
|
| D | unit_test_ldso_dynlink.c | 38 * @tc.level : Level 2 49 * @tc.level : Level 2 60 * @tc.level : Level 1 71 * @tc.level : Level 2 82 * @tc.level : Level 2 93 * @tc.level : Level 0 104 * @tc.level : Level 2 115 * @tc.level : Level 2 126 * @tc.level : Level 0 137 * @tc.level : Level 2 [all …]
|
| D | unit_test_hilog_vsnprint_f_p.c | 39 * @tc.level : Level 0 53 * @tc.level : Level 2 66 * @tc.level : Level 1 80 * @tc.level : Level 1 94 * @tc.level : Level 2 108 * @tc.level : Level 2 122 * @tc.level : Level 2 136 * @tc.level : Level 2 149 * @tc.level : Level 2 162 * @tc.level : Level 1 [all …]
|
| D | unit_test_ldso_ns_config.c | 24 * @tc.level : Level 1 44 * @tc.level : Level 0 59 * @tc.level : Level 2 74 * @tc.level : Level 2 88 * @tc.level : Level 2 109 * @tc.level : Level 2 130 * @tc.level : Level 2 144 * @tc.level : Level 2 158 * @tc.level : Level 2 172 * @tc.level : Level 2 [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
| D | Texture.cpp | 327 GLsizei Texture::getDepth(GLenum target, GLint level) const in getDepth() 332 egl::Image *Texture::createSharedImage(GLenum target, unsigned int level) in createSharedImage() argument 334 egl::Image *image = getRenderTarget(target, level); // Increments reference count in createSharedImage() 355 …relation to width and height is already validated with gl::ComputeCompressedSize() at the API level in setCompressedImage() 382 …relation to width and height is already validated with gl::ComputeCompressedSize() at the API level in subImageCompressed() 498 GLsizei Texture2D::getWidth(GLenum target, GLint level) const in getWidth() 501 return image[level] ? image[level]->getWidth() : 0; in getWidth() 504 GLsizei Texture2D::getHeight(GLenum target, GLint level) const in getHeight() 507 return image[level] ? image[level]->getHeight() : 0; in getHeight() 510 GLint Texture2D::getFormat(GLenum target, GLint level) const in getFormat() [all …]
|
| /third_party/selinux/libsepol/include/sepol/policydb/ |
| D | mls_types.h | 27 * Type definitions for the multi-level security (MLS) policy. 50 mls_level_t level[2]; /* low == level[0], high == level[1] */ member 55 if (r1->level[1].sens < r2->level[0].sens || r2->level[1].sens < r1->level[0].sens) { in mls_range_glblub() 61 dst->level[0].sens = MAX(r1->level[0].sens, r2->level[0].sens); in mls_range_glblub() 63 dst->level[1].sens = MIN(r1->level[1].sens, r2->level[1].sens); in mls_range_glblub() 65 if (ebitmap_and(&dst->level[0].cat, &r1->level[0].cat, &r2->level[0].cat) < 0) { in mls_range_glblub() 69 if (ebitmap_and(&dst->level[1].cat, &r1->level[1].cat, &r2->level[1].cat) < 0) { in mls_range_glblub() 86 static inline void mls_level_init(struct mls_level *level) in mls_level_init() argument 89 memset(level, 0, sizeof(mls_level_t)); in mls_level_init() 92 static inline void mls_level_destroy(struct mls_level *level) in mls_level_destroy() argument [all …]
|
| /third_party/python/Parser/ |
| D | parser.c | 1043 if (p->level++ == MAXSTACK) { in file_rule() 1048 p->level--; in file_rule() 1055 p->level--; in file_rule() 1058 … D(fprintf(stderr, "%*c> file[%d-%d]: %s\n", p->level, ' ', _mark, p->mark, "statements? $")); in file_rule() 1067 …D(fprintf(stderr, "%*c+ file[%d-%d]: %s succeeded!\n", p->level, ' ', _mark, p->mark, "statements?… in file_rule() 1071 p->level--; in file_rule() 1077 D(fprintf(stderr, "%*c%s file[%d-%d]: %s failed!\n", p->level, ' ', in file_rule() 1082 p->level--; in file_rule() 1090 if (p->level++ == MAXSTACK) { in interactive_rule() 1095 p->level--; in interactive_rule() [all …]
|
| /third_party/rust/crates/env_logger/src/filter/ |
| D | mod.rs | 61 use log::{Level, LevelFilter, Metadata, Record}; 138 pub fn filter_module(&mut self, module: &str, level: LevelFilter) -> &mut Self { in filter_module() 139 self.filter(Some(module), level) in filter_module() 143 pub fn filter_level(&mut self, level: LevelFilter) -> &mut Self { in filter_level() 144 self.filter(None, level) in filter_level() 149 /// The given module (if any) will log at most the specified level provided. 151 pub fn filter(&mut self, module: Option<&str>, level: LevelFilter) -> &mut Self { in filter() 154 level, in filter() 185 level: LevelFilter::Error, in build() 228 level: LevelFilter, field [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/System/ |
| D | Debug.cpp | 47 enum class Level enum 59 void logv_android(Level level, const char *msg) in logv_android() argument 61 switch(level) in logv_android() 63 case Level::Debug: in logv_android() 66 case Level::Info: in logv_android() 69 case Level::Warn: in logv_android() 72 case Level::Error: in logv_android() 75 case Level::Fatal: in logv_android() 83 void logv_std(Level level, const char *msg) in logv_std() argument 85 switch(level) in logv_std() [all …]
|
| /third_party/rust/rust/compiler/rustc_middle/src/ |
| D | lint.rs | 9 FutureIncompatibilityReason, Level, Lint, LintId, 18 /// How a lint level was set. 21 /// Lint is at the default level as declared 25 /// Lint level was set by an attribute. 33 /// Lint level was set by a command-line flag. 34 /// The provided `Level` is the level specified on the command line. 35 /// (The actual level may be lower due to `--cap-lints`.) 36 CommandLine(Symbol, Level), 57 /// A tuple of a lint level and its source. 58 pub type LevelAndSource = (Level, LintLevelSource); [all …]
|
| /third_party/openhitls/tls/feature/security/src/ |
| D | security_default.c | 26 /* Number of security bits corresponding to the security level */ 32 int32_t SECURITY_GetSecbits(int32_t level) in SECURITY_GetSecbits() argument 34 if (level <= HITLS_SECURITY_LEVEL_MIN) { in SECURITY_GetSecbits() 37 level = (level > HITLS_SECURITY_LEVEL_MAX) ? HITLS_SECURITY_LEVEL_MAX : level; in SECURITY_GetSecbits() 39 return g_minBits[level - 1]; in SECURITY_GetSecbits() 42 static int32_t CheckCipherSuite(void *other, int32_t level) in CheckCipherSuite() argument 49 int32_t minBits = SECURITY_GetSecbits(level); in CheckCipherSuite() 57 …/* The level is greater than or equal to 1, and the export cipher suite and the MD5 algorithm for … in CheckCipherSuite() 62 /* Forbidding non-forward security cipher suites when Level is greater than or equal to 3. */ in CheckCipherSuite() 63 if ((level >= HITLS_SECURITY_LEVEL_THREE) && in CheckCipherSuite() [all …]
|
| /third_party/skia/m133/third_party/externals/expat/testdata/largefiles/ |
| D | nes96.xml | 52 <labl level="variable"> 59 <labl level="variable"> 76 <labl level="variable"> 93 <labl level="variable"> 110 <labl level="variable"> 127 <labl level="variable"> 148 <labl level="variable"> 166 <txt level="category"> 174 <txt level="category"> 183 <labl level="variable"> [all …]
|
| /third_party/skia/third_party/externals/expat/testdata/largefiles/ |
| D | nes96.xml | 52 <labl level="variable"> 59 <labl level="variable"> 76 <labl level="variable"> 93 <labl level="variable"> 110 <labl level="variable"> 127 <labl level="variable"> 148 <labl level="variable"> 166 <txt level="category"> 174 <txt level="category"> 183 <labl level="variable"> [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/test/lint/ |
| D | divergence_analysis_test.cpp | 29 void CLIMessageConsumer(spv_message_level_t level, const char*, in CLIMessageConsumer() argument 31 switch (level) { in CLIMessageConsumer() 72 using Level = DivergenceAnalysis::DivergenceLevel; typedef 121 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 122 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(13)); in TEST_F() 124 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(14)); in TEST_F() 126 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() 128 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(12)); in TEST_F() 173 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 175 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() [all …]
|
| /third_party/spirv-tools/test/lint/ |
| D | divergence_analysis_test.cpp | 29 void CLIMessageConsumer(spv_message_level_t level, const char*, in CLIMessageConsumer() argument 31 switch (level) { in CLIMessageConsumer() 72 using Level = DivergenceAnalysis::DivergenceLevel; typedef 121 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 122 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(13)); in TEST_F() 124 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(14)); in TEST_F() 126 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() 128 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(12)); in TEST_F() 173 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 175 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/lint/ |
| D | divergence_analysis_test.cpp | 29 void CLIMessageConsumer(spv_message_level_t level, const char*, in CLIMessageConsumer() argument 31 switch (level) { in CLIMessageConsumer() 72 using Level = DivergenceAnalysis::DivergenceLevel; typedef 121 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 122 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(13)); in TEST_F() 124 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(14)); in TEST_F() 126 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() 128 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(12)); in TEST_F() 173 EXPECT_EQ(Level::kUniform, divergence_->GetDivergenceLevel(10)); in TEST_F() 175 EXPECT_EQ(Level::kDivergent, divergence_->GetDivergenceLevel(11)); in TEST_F() [all …]
|
| /third_party/rust/rust/compiler/rustc_middle/src/middle/ |
| D | privacy.rs | 17 pub enum Level { enum 31 impl Level { implementation 32 pub fn all_levels() -> [Level; 4] { in all_levels() 33 [Level::Direct, Level::Reexported, Level::Reachable, Level::ReachableThroughImplTrait] 46 pub fn at_level(&self, level: Level) -> &Visibility { in at_level() 47 match level { in at_level() 48 Level::Direct => &self.direct, in at_level() 49 Level::Reexported => &self.reexported, in at_level() 50 Level::Reachable => &self.reachable, in at_level() 51 Level::ReachableThroughImplTrait => &self.reachable_through_impl_trait, in at_level() [all …]
|
| /third_party/musl/libc-test/src/functionalext/dlns/ |
| D | dlns_dlopen.c | 28 * @tc.level : Level 0 41 * @tc.level : Level 2 52 * @tc.level : Level 1 65 * @tc.level : Level 2 86 * @tc.level : Level 1 99 * @tc.level : Level 2 114 * @tc.level : Level 1 132 * @tc.level : Level 2 142 * @tc.level : Level 2 156 * @tc.level : Level 1 [all …]
|
| /third_party/rust/rust/library/proc_macro/src/ |
| D | diagnostic.rs | 3 /// An enum representing a diagnostic level. 7 pub enum Level { enum 51 level: Level, field 58 ($spanned:ident, $regular:ident, $level:expr) => { 61 stringify!($level), "`] level, and the given `spans` and `message`.")] 67 self.children.push(Diagnostic::spanned(spans, $level, message)); 73 stringify!($level), "`] level, and the given `message`.")] 75 self.children.push(Diagnostic::new($level, message)); 97 /// Creates a new diagnostic with the given `level` and `message`. 99 pub fn new<T: Into<String>>(level: Level, message: T) -> Diagnostic { in new() argument [all …]
|
| /third_party/libabigail/tests/data/test-abidiff-exit/test-PR30034/split/include/ |
| D | rte_log.h | 72 #define RTE_LOG_DEBUG 8U /**< Debug-level messages. */ 73 #define RTE_LOG_MAX RTE_LOG_DEBUG /**< Most detailed log level. */ 100 * Set the global log level. 102 * After this call, logs with a level lower or equal than the level 105 * @param level 106 * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8). 108 void rte_log_set_global_level(uint32_t level); 111 * Get the global log level. 114 * The current global log level. 119 * Get the log level for a given type. [all …]
|
| /third_party/libabigail/tests/data/test-abidiff-exit/test-PR30034/reference/include/ |
| D | rte_log.h | 72 #define RTE_LOG_DEBUG 8U /**< Debug-level messages. */ 73 #define RTE_LOG_MAX RTE_LOG_DEBUG /**< Most detailed log level. */ 100 * Set the global log level. 102 * After this call, logs with a level lower or equal than the level 105 * @param level 106 * Log level. A value between RTE_LOG_EMERG (1) and RTE_LOG_DEBUG (8). 108 void rte_log_set_global_level(uint32_t level); 111 * Get the global log level. 114 * The current global log level. 119 * Get the log level for a given type. [all …]
|
| /third_party/musl/libc-test/src/functionalext/supplement/network/ |
| D | getsockopt_network.c | 29 * @tc.level : Level 0 43 * @tc.level : Level 0 57 * @tc.level : Level 0 71 * @tc.level : Level 0 85 * @tc.level : Level 0 99 * @tc.level : Level 0 113 * @tc.level : Level 0 127 * @tc.level : Level 0 141 * @tc.level : Level 0 155 * @tc.level : Level 0 [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | moduleElementsInWrongContext3.errors.txt | 1 …ts(3,9): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 2 …ts(4,9): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 3 …ts(8,9): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 4 …3.ts(10,9): error TS1234: An ambient module declaration is only allowed at the top level in a file. 5 …gContext3.ts(14,9): error TS1231: An export assignment must be at the top level of a file or modul… 6 …ts(18,9): error TS1233: An export declaration can only be used at the top level of a namespace or … 7 …ts(19,9): error TS1233: An export declaration can only be used at the top level of a namespace or … 8 …ts(20,9): error TS1233: An export declaration can only be used at the top level of a namespace or … 9 …WrongContext3.ts(21,9): error TS1258: A default export must be at the top level of a file or modul… 12 …ts(24,9): error TS1232: An import declaration can only be used at the top level of a namespace or … [all …]
|
| D | moduleElementsInWrongContext.errors.txt | 1 …ts(2,5): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 2 …ts(3,5): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 3 …ts(7,5): error TS1235: A namespace declaration is only allowed at the top level of a namespace or … 4 …xt.ts(9,5): error TS1234: An ambient module declaration is only allowed at the top level in a file. 5 …ngContext.ts(13,5): error TS1231: An export assignment must be at the top level of a file or modul… 6 …ts(17,5): error TS1233: An export declaration can only be used at the top level of a namespace or … 7 …ts(18,5): error TS1233: An export declaration can only be used at the top level of a namespace or … 8 …ts(19,5): error TS1233: An export declaration can only be used at the top level of a namespace or … 9 …nWrongContext.ts(20,5): error TS1258: A default export must be at the top level of a file or modul… 12 …ts(23,5): error TS1232: An import declaration can only be used at the top level of a namespace or … [all …]
|