/external/grpc-grpc/tools/run_tests/performance/ |
D | scenario_result_schema.json | 5 "mode": "NULLABLE", string 10 "mode": "NULLABLE", string 15 "mode": "NULLABLE", string 20 "mode": "NULLABLE", string 25 "mode": "NULLABLE", string 30 "mode": "NULLABLE", string 35 "mode": "NULLABLE", string 42 "mode": "NULLABLE", string 47 "mode": "NULLABLE", string 52 "mode": "NULLABLE", string [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/performance/ |
D | scenario_result_schema.json | 5 "mode": "NULLABLE", string 10 "mode": "NULLABLE", string 15 "mode": "NULLABLE", string 20 "mode": "NULLABLE", string 25 "mode": "NULLABLE", string 30 "mode": "NULLABLE", string 35 "mode": "NULLABLE", string 42 "mode": "NULLABLE", string 47 "mode": "NULLABLE", string 52 "mode": "NULLABLE", string [all …]
|
/external/libopus/celt/dump_modes/ |
D | dump_modes.c | 60 CELTMode *mode = modes[i]; in dump_modes() local 61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts); in dump_modes() 75 CELTMode *mode = modes[i]; in dump_modes() local 79 mdctSize = mode->shortMdctSize*mode->nbShortMdcts; in dump_modes() 80 standard = (mode->Fs == 400*(opus_int32)mode->shortMdctSize); in dump_modes() 81 framerate = mode->Fs/mode->shortMdctSize; in dump_modes() 85 fprintf(file, "#ifndef DEF_EBANDS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 86 fprintf(file, "#define DEF_EBANDS%d_%d\n", mode->Fs, mdctSize); in dump_modes() 87 …fprintf (file, "static const opus_int16 eBands%d_%d[%d] = {\n", mode->Fs, mdctSize, mode->nbEBands… in dump_modes() 88 for (j=0;j<mode->nbEBands+2;j++) in dump_modes() [all …]
|
/external/llvm/utils/emacs/ |
D | tablegen-mode.el | 1 ;;; tablegen-mode.el --- Major mode for TableGen description files (part of LLVM project) 6 ;; A major mode for TableGen description files in LLVM. 12 ;; Create mode-specific tables. 47 "Additional expressions to highlight in TableGen mode.") 48 (put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords)) 54 (defvar tablegen-mode-syntax-table nil 55 "Syntax table used in `tablegen-mode' buffers.") 56 (when (not tablegen-mode-syntax-table) 57 (setq tablegen-mode-syntax-table (make-syntax-table)) 59 (modify-syntax-entry ?\ " " tablegen-mode-syntax-table) [all …]
|
/external/clang/test/SemaCXX/ |
D | attr-mode-tmpl.cpp | 9 // Check that non-vector 'mode' attribute is OK with enumeration types. in CheckEnumerations() 10 typedef T __attribute__((mode(QI))) T1; in CheckEnumerations() 11 typedef T T2 __attribute__((mode(HI))); in CheckEnumerations() 12 …typedef T __attribute__((mode(V8SI))) T3; // expected-error{{mode 'V8SI' is not supported for enum… in CheckEnumerations() 13 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated}} in CheckEnumerations() 15 typedef enum __attribute__((mode(HI))) { A4, B4 } T4; in CheckEnumerations() 16 typedef enum { A5, B5 } __attribute__((mode(SI))) T5; in CheckEnumerations() 17 …typedef enum __attribute__((mode(V2SI))) { A6, B6 } T6; // expected-error{{mode 'V2SI' is not supp… in CheckEnumerations() 19 …typedef enum { A7, B7 } __attribute__((mode(V2QI))) T7; // expected-error{{mode 'V2QI' is not supp… in CheckEnumerations() 27 …typedef T __attribute__((mode(QI))) T1; // expected-error{{mode attribute only supported for in… in CheckPrimitiveTypes() [all …]
|
/external/e2fsprogs/tests/f_journal/ |
D | expect.1 | 2 Clearing orphaned inode 37 (uid=0, gid=0, mode=0100600, size=4096) 3 Clearing orphaned inode 90 (uid=0, gid=0, mode=040700, size=1024) 4 Clearing orphaned inode 67 (uid=0, gid=0, mode=0100600, size=4096) 5 Clearing orphaned inode 50 (uid=0, gid=0, mode=0100600, size=4096) 6 Clearing orphaned inode 57 (uid=0, gid=0, mode=040700, size=1024) 7 Clearing orphaned inode 80 (uid=0, gid=0, mode=040700, size=1024) 8 Clearing orphaned inode 45 (uid=0, gid=0, mode=040700, size=1024) 9 Clearing orphaned inode 71 (uid=0, gid=0, mode=0100600, size=4096) 10 Clearing orphaned inode 86 (uid=0, gid=0, mode=040700, size=1024) 11 Clearing orphaned inode 83 (uid=0, gid=0, mode=040700, size=1024) [all …]
|
/external/libopus/celt/ |
D | modes.c | 167 static void compute_allocation_table(CELTMode *mode) in compute_allocation_table() argument 173 mode->nbAllocVectors = BITALLOC_SIZE; in compute_allocation_table() 174 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands)); in compute_allocation_table() 178 /* Check for standard mode */ in compute_allocation_table() 179 if (mode->Fs == 400*(opus_int32)mode->shortMdctSize) in compute_allocation_table() 181 for (i=0;i<BITALLOC_SIZE*mode->nbEBands;i++) in compute_allocation_table() 183 mode->allocVectors = allocVectors; in compute_allocation_table() 186 /* If not the standard mode, interpolate */ in compute_allocation_table() 190 for (j=0;j<mode->nbEBands;j++) in compute_allocation_table() 195 … if (400*(opus_int32)eband5ms[k] > mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize) in compute_allocation_table() [all …]
|
/external/protobuf/editors/ |
D | protobuf-mode.el | 1 ;;; protobuf-mode.el --- major mode for editing protocol buffers. 37 ;; - Put `protobuf-mode.el' in your Emacs load-path. 39 ;; (require 'protobuf-mode) 41 ;; You can customize this mode just like any mode derived from CC Mode. If 42 ;; you want to add customizations specific to protobuf-mode, you can use the 43 ;; `protobuf-mode-hook'. For example, the following would make protocol-mode 48 ;; (indent-tabs-mode . nil))) 50 ;; (add-hook 'protobuf-mode-hook 53 ;; Refer to the documentation of CC Mode for more information about 54 ;; customization details and how to use this mode. [all …]
|
/external/python/cpython3/Modules/ |
D | _stat.c | 92 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) argument 96 # define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO) argument 100 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) argument 104 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK) argument 108 # define S_ISDOOR(mode) 0 argument 112 # define S_ISPORT(mode) 0 argument 116 # define S_ISWHT(mode) 0 argument 255 mode_t mode; in _PyLong_AsMode_t() local 261 mode = (mode_t)value; in _PyLong_AsMode_t() 262 if ((unsigned long)mode != value) { in _PyLong_AsMode_t() [all …]
|
/external/tensorflow/tensorflow/python/grappler/ |
D | auto_mixed_precision_test.py | 265 """Returns the device to run on. If mode is mkl, run on CPU""" 284 def _count_casts(mode, nodes): argument 296 if mode == 'cuda': 300 assert mode == 'mkl' 342 # TODO(benbarsdell): Add tests for eager mode with a tf.function. 358 def _lower_precision_dtype(self, mode): argument 359 return dtypes.float16 if mode == 'cuda' else dtypes.bfloat16 361 def _assert_output_f16(self, mode, node_map, node_name, output_port=0): argument 363 self._lower_precision_dtype(mode).as_datatype_enum) 365 def _run(self, mode, fetches): argument [all …]
|
/external/mesa3d/src/glx/ |
D | glxconfig.c | 45 * \param mode GL context mode whose data is to be returned. 46 * \param attribute Attribute of \c mode that is to be returned. 47 * \param value_return Location to store the data member of \c mode. 48 * \return If \c attribute is a valid attribute of \c mode, zero is 52 glx_config_get(struct glx_config * mode, int attribute, int *value_return) in glx_config_get() argument 59 *value_return = mode->rgbBits; in glx_config_get() 62 *value_return = !(mode->renderType & GLX_COLOR_INDEX_BIT); in glx_config_get() 65 *value_return = mode->redBits; in glx_config_get() 68 *value_return = mode->greenBits; in glx_config_get() 71 *value_return = mode->blueBits; in glx_config_get() [all …]
|
/external/fonttools/Snippets/ |
D | compact_gpos.py | 10 each mode can be inspected. 13 a mode value for a specific font (trade-off between bytes saved in TTF format 54 for mode in MODES: 55 print(f" Running mode={mode}", file=sys.stderr) 56 fonts[mode] = TTFont(font_path) 58 compact(fonts[mode], mode=str(mode)) 59 runtimes[mode].append(time.perf_counter() - before) 60 font_paths[mode] = ( 63 / (font_path.stem + f"_{mode}" + font_path.suffix) 65 font_paths[mode].parent.mkdir(parents=True, exist_ok=True) [all …]
|
/external/arm-trusted-firmware/drivers/renesas/common/iic_dvfs/ |
D | iic_dvfs.c | 97 IIC_DVFS_FUNC(check_error, enum dvfs_state_t *state, uint32_t *err, uint8_t mode) in IIC_DVFS_FUNC() argument 103 stop = mode == DVFS_READ_MODE ? IIC_DVFS_SET_ICCR_STOP_READ : in IIC_DVFS_FUNC() 194 uint8_t mode; in IIC_DVFS_FUNC() local 196 mode = mmio_read_8(IIC_DVFS_REG_ICCR) | IIC_DVFS_BIT_ICCR_ENABLE; in IIC_DVFS_FUNC() 197 mmio_write_8(IIC_DVFS_REG_ICCR, mode); in IIC_DVFS_FUNC() 227 mode = mmio_read_8(IIC_DVFS_REG_ICIC) in IIC_DVFS_FUNC() 231 mmio_write_8(IIC_DVFS_REG_ICIC, mode); in IIC_DVFS_FUNC() 241 uint8_t mode; in IIC_DVFS_FUNC() local 250 mode = mmio_read_8(IIC_DVFS_REG_ICSR) & IIC_DVFS_BIT_ICSR_DTE; in IIC_DVFS_FUNC() 251 if (mode != IIC_DVFS_BIT_ICSR_DTE) { in IIC_DVFS_FUNC() [all …]
|
/external/clang/test/Sema/ |
D | attr-mode-enums.c | 3 // Test checks that 'mode' attribute is handled correctly with enums, i. e. code 4 // 1. "typedef enum { A } __attribute__((mode(HI))) T;" is accepted, 5 // 2. "enum X __attribute__((mode(QI))) var;" forms a complete integer type. 6 // 3. "enum { A } __attribute__((mode(V4SI))) var;" is not accepted (vector mode). 11 // Vector mode are not allowed with enums. in main() 12 …typedef enum { E1 } __attribute__((mode(V4QI))) RejectedType1; // expected-error{{mode 'V4QI' is n… in main() 13 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated}} in main() 14 …typedef enum __attribute__((mode(V8HI))) { E2 } RejectedType2; // expected-error{{mode 'V8HI' is n… in main() 16 …typedef enum E3 __attribute__((mode(V2SI))) RejectedType3; // expected-error{{mode 'V2SI' is not s… in main() 18 …typedef EnumType __attribute__((mode(V4DI))) RejectedType4; // expected-error{{mode 'V4DI' is not … in main() [all …]
|
D | attr-mode-vector-types.c | 4 typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1; 5 typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2; 6 typedef int __attribute__((mode(SI))) __attribute__((vector_size(256))) vec_t3; 7 typedef int __attribute__((mode(DI))) __attribute__((vector_size(256)))vec_t4; 8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5; 9 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6; 10 typedef float __attribute__((mode(XF))) __attribute__((vector_size(256))) vec_t7; 12 typedef int v8qi __attribute__ ((mode(QI))) __attribute__ ((vector_size(8))); 13 typedef int v8qi __attribute__ ((mode(V8QI))); 14 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated; use the 'v… [all …]
|
/external/python/cpython3/Lib/ |
D | stat.py | 19 # Extract bits from the mode 21 def S_IMODE(mode): argument 22 """Return the portion of the file's mode that can be set by 25 return mode & 0o7777 27 def S_IFMT(mode): argument 28 """Return the portion of the file's mode that describes the 31 return mode & 0o170000 50 def S_ISDIR(mode): argument 51 """Return True if mode is from a directory.""" 52 return S_IFMT(mode) == S_IFDIR [all …]
|
D | tty.py | 19 """Put terminal into a raw mode.""" 20 mode = tcgetattr(fd) 21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON) 22 mode[OFLAG] = mode[OFLAG] & ~(OPOST) 23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB) 24 mode[CFLAG] = mode[CFLAG] | CS8 25 mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG) 26 mode[CC][VMIN] = 1 27 mode[CC][VTIME] = 0 28 tcsetattr(fd, when, mode) [all …]
|
/external/autotest/server/cros/ap_configurators/ |
D | ap_spec_unittest.py | 22 self.assertEquals(spec.mode, ap_spec.DEFAULT_2GHZ_MODE) 31 self.assertEquals(spec.mode, ap_spec.DEFAULT_2GHZ_MODE) 38 self.assertEquals(spec.mode, ap_spec.DEFAULT_5GHZ_MODE) 42 """Test setting only a 2GHz mode.""" 43 spec = ap_spec.APSpec(mode=ap_spec.MODE_B) 49 """Test setting only a 5GHz mode.""" 50 spec = ap_spec.APSpec(mode=ap_spec.MODE_A) 56 """Test setting the mode to N.""" 57 spec = ap_spec.APSpec(mode=ap_spec.MODE_N) 66 self.assertEquals(spec.mode, ap_spec.DEFAULT_2GHZ_MODE) [all …]
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | ARB_draw_buffers.xml | 7 <size name="Get" mode="get"/> 10 <size name="Get" mode="get"/> 13 <size name="Get" mode="get"/> 16 <size name="Get" mode="get"/> 19 <size name="Get" mode="get"/> 22 <size name="Get" mode="get"/> 25 <size name="Get" mode="get"/> 28 <size name="Get" mode="get"/> 31 <size name="Get" mode="get"/> 34 <size name="Get" mode="get"/> [all …]
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/ |
D | ParserScopeMatchingTest.java | 17 for (int mode : ALL_MODES) { in testUnclosedArray() 18 _testUnclosedArray(mode); in testUnclosedArray() 22 public void _testUnclosedArray(int mode) throws Exception in _testUnclosedArray() argument 24 JsonParser p = createParser(mode, "[ 1, 2 "); in _testUnclosedArray() 32 fail("Expected an exception for unclosed ARRAY (mode: "+mode+")"); in _testUnclosedArray() 40 for (int mode : ALL_MODES) { in testUnclosedObject() 41 _testUnclosedObject(mode); in testUnclosedObject() 45 private void _testUnclosedObject(int mode) throws Exception in _testUnclosedObject() argument 47 JsonParser p = createParser(mode, "{ \"key\" : 3 "); in _testUnclosedObject() 54 fail("Expected an exception for unclosed OBJECT (mode: "+mode+")"); in _testUnclosedObject() [all …]
|
/external/python/cpython2/Lib/ |
D | tty.py | 19 """Put terminal into a raw mode.""" 20 mode = tcgetattr(fd) 21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON) 22 mode[OFLAG] = mode[OFLAG] & ~(OPOST) 23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB) 24 mode[CFLAG] = mode[CFLAG] | CS8 25 mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG) 26 mode[CC][VMIN] = 1 27 mode[CC][VTIME] = 0 28 tcsetattr(fd, when, mode) [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Src/ |
D | stm32l4xx_hal_pwr.c | 62 /** @defgroup PWR_PVD_Mode_Mask PWR PVD Mode Mask 165 (+) The PVD is stopped in Standby mode. 171 (+) WakeUp pins are used to wakeup the system from Standby mode or Shutdown mode. 181 …(+) Low-power Run mode: core and peripherals are running, main regulator off, low power regulator … 182 …(+) Sleep mode: Cortex-M4 core stopped, peripherals kept running, main and low power regulators on. 183 …(+) Low-power Sleep mode: Cortex-M4 core stopped, peripherals kept running, main regulator off, lo… 184 (+) Stop 0 mode: all clocks are stopped except LSI and LSE, main and low power regulators on. 185 …(+) Stop 1 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulato… 186 …p 2 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulator on, r… 187 …(+) Standby mode with SRAM2: all clocks are stopped except LSI and LSE, SRAM2 content preserved, m… [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Src/ |
D | stm32l4xx_hal_pwr.c | 62 /** @defgroup PWR_PVD_Mode_Mask PWR PVD Mode Mask 165 (+) The PVD is stopped in Standby mode. 171 (+) WakeUp pins are used to wakeup the system from Standby mode or Shutdown mode. 181 …(+) Low-power Run mode: core and peripherals are running, main regulator off, low power regulator … 182 …(+) Sleep mode: Cortex-M4 core stopped, peripherals kept running, main and low power regulators on. 183 …(+) Low-power Sleep mode: Cortex-M4 core stopped, peripherals kept running, main regulator off, lo… 184 (+) Stop 0 mode: all clocks are stopped except LSI and LSE, main and low power regulators on. 185 …(+) Stop 1 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulato… 186 …p 2 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulator on, r… 187 …(+) Standby mode with SRAM2: all clocks are stopped except LSI and LSE, SRAM2 content preserved, m… [all …]
|
/external/ComputeLibrary/tests/framework/ |
D | Macros.h | 139 #define TEST_REGISTRAR(TEST_NAME, MODE, STATUS) \ argument 142 #TEST_NAME, MODE, STATUS \ 144 #define DATA_TEST_REGISTRAR(TEST_NAME, MODE, STATUS, DATASET) … argument 147 …#TEST_NAME, MODE, STATUS, DATASET … 150 #define TEST_CASE_IMPL(TEST_NAME, MODE, STATUS) \ argument 157 TEST_REGISTRAR(TEST_NAME, MODE, STATUS); \ 160 #define TEST_CASE(TEST_NAME, MODE) \ argument 161 TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE) 162 #define EXPECTED_FAILURE_TEST_CASE(TEST_NAME, MODE) \ argument 163 …TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::EXPECTED_FA… [all …]
|
/external/boringssl/src/ssl/test/runner/ |
D | fuzzer_mode.json | 3 "BadCBCPadding*": "Fuzzer mode has no CBC padding.", 5 "*BadFinished*": "Fuzzer mode ignores Finished checks.", 6 "TrailingMessageData-*Finished*": "Fuzzer mode ignores Finished checks.", 8 "DTLSIgnoreBadPackets*": "Fuzzer mode has no bad packets.", 9 "TLSFatalBadPackets": "Fuzzer mode has no bad packets.", 10 "*-BadRecord*": "Fuzzer mode has no bad packets.", 12 "BadRSAClientKeyExchange*": "Fuzzer mode does not notice a bad premaster secret.", 14 …"TrailingMessageData-TLS13-ServerHello-*": "Fuzzer mode will not read the peer's alert as a MAC er… 15 …"UnexpectedUnencryptedExtension-Client-TLS13": "Fuzzer mode will not read the peer's alert as a MA… 16 …"UnknownUnencryptedExtension-Client-TLS13": "Fuzzer mode will not read the peer's alert as a MAC e… [all …]
|