Searched +full:a +full:- +full:phandle +full:- +full:with +full:- +full:args (Results 1 – 14 of 14) sorted by relevance
/external/dtc/tests/ |
D | type-preservation.dt.yaml | 1 --- 2 - '#address-cells': [[0x1]] 3 '#size-cells': [[0x0]] 7 int-array: [[0x0, 0x1], [0x2, 0x3]] 9 int8-array: [!u8 [0x0, 0x12, 0x34, 0x56]] 11 int16-array: [!u16 [0x1234, 0x5678, 0x90ab, 0xcdef]] 12 int16-matrix: [!u16 [0x1234, 0x5678], [0x90ab, 0xcdef]] 14 int64-array: [!u64 [0x100000000, 0x0]] 15 a-string-with-nulls: ["foo\0bar", "baz"] 16 a-phandle: [[!phandle 0x1]] [all …]
|
D | type-preservation.dts | 1 /dts-v1/; 4 #address-cells = <0x01>; 5 #size-cells = <0x00>; 10 int-array = <0x00 0x01>, int_value_label: <0x02 0x03>; 12 int8-array = [00 12 34 56] label:; 14 int16-array = /bits/ 16 <0x1234 0x5678 0x90ab 0xcdef>; 15 int16-matrix = /bits/ 16 <0x1234 0x5678>, <0x90ab 0xcdef>; 17 int64-array = /bits/ 64 <0x100000000 0x00> int64_array_label_end:; 18 a-string-with-nulls = "foo\0bar", "baz"; 19 a-phandle = <&subsub1>; [all …]
|
D | pylibfdt_tests.py | 1 # SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) 2 # pylibfdt - Tests for Flat Device Tree manipulation in Python 50 Args: 56 return 'pylibfdt error %d: %s' % (-err_code, libfdt.strerror(-err_code)) 59 """Read a device tree file into an Fdt object, ready for use 61 Args: 67 with open(fname, mode='rb') as f: 84 """Read a list of properties from a node 86 Args: 102 """Read a list of subnodes from a node [all …]
|
D | run_tests.sh | 6 if [ -z "$CC" ]; then 10 if [ -z "$PYTHON" ]; then 14 if [ -n "$NO_PYTHON" ]; then 21 if [ -f ../pylibfdt/_libfdt.so ] || [ -f ../pylibfdt/_libfdt.cpython-3*.so ]; then 28 if [ -n "$NO_YAML" ]; then 35 if pkg-config --exists yaml-0.1; then 43 if [ -z "$STATSZ" ]; then 44 stat --version 2>/dev/null | grep -q 'GNU' 46 if [ "$GNUSTAT" -ne 0 ]; then 48 STATSZ="stat -f %Uz" [all …]
|
/external/dtc/pylibfdt/ |
D | libfdt.i | 1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) 3 * pylibfdt - Flat Device Tree manipulation in Python 17 * We rename this function here to avoid problems with swig, since we also have 18 * a struct called fdt_property. That struct causes swig to create a class in 55 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors, 72 Args: 73 fdt_err: Error number (-ve) 81 """Raise an error if the return value is -ve 85 Args: 86 val: Return value from a libfdt function [all …]
|
/external/python/cpython2/PC/ |
D | _winreg.c | 10 * Ripped from win32api module 03-Feb-2000 by Mark Hammond, and 24 static char errNotAHandle[] = "Object is not a handle"; 42 "CloseKey() - Closes a registry key.\n" 43 "ConnectRegistry() - Establishes a connection to a predefined registry handle\n" 45 "CreateKey() - Creates the specified key, or opens it if it already exists.\n" 46 "DeleteKey() - Deletes the specified key.\n" 47 "DeleteValue() - Removes a named value from the specified registry key.\n" 48 "EnumKey() - Enumerates subkeys of the specified open registry key.\n" 49 "EnumValue() - Enumerates values of the specified open registry key.\n" 50 "ExpandEnvironmentStrings() - Expand the env strings in a REG_EXPAND_SZ string.\n" [all …]
|
/external/sqlite/dist/ |
D | shell.c | 5 ** "shell.c" file used to implement the SQLite command-line shell. 13 ** source file to help make the command-line program easier to compile. 15 ** To modify this program, get a copy of the canonical SQLite source tree, 23 ** a legal notice, here is a blessing: 39 ** Determine if we are dealing with WinRT, which provides only a subset of 75 ** Enable large-file support for fopen() and friends on unix. 184 /* Make sure isatty() has a prototype. */ 198 /* Windows CE (arm-wince-mingw32ce-gcc) does not provide isatty() 199 * thus we always assume that we have a console. That can be 200 * overridden with the -batch command line option. [all …]
|
D | sqlite3.c | 4 ** single large file, the entire code can be compiled as a single translation 7 ** of 5% or more are commonly seen when SQLite is compiled as a single 13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within 16 ** if you want a wrapper to interface SQLite with your choice of programming 17 ** language. The code for the "sqlite3" command-line shell is also in a 30 ** a legal notice, here is a blessing: 38 ** This file implements routines used to report what compile-time options 39 ** SQLite was built with. 42 #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* IMP: R-16824-07538 */ 46 ** autoconf-based build [all …]
|
/external/sqlite/dist/orig/ |
D | shell.c | 5 ** "shell.c" file used to implement the SQLite command-line shell. 13 ** source file to help make the command-line program easier to compile. 15 ** To modify this program, get a copy of the canonical SQLite source tree, 23 ** a legal notice, here is a blessing: 39 ** Determine if we are dealing with WinRT, which provides only a subset of 75 ** Enable large-file support for fopen() and friends on unix. 179 /* Make sure isatty() has a prototype. */ 193 /* Windows CE (arm-wince-mingw32ce-gcc) does not provide isatty() 194 * thus we always assume that we have a console. That can be 195 * overridden with the -batch command line option. [all …]
|
D | sqlite3.c | 4 ** single large file, the entire code can be compiled as a single translation 7 ** of 5% or more are commonly seen when SQLite is compiled as a single 13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within 16 ** if you want a wrapper to interface SQLite with your choice of programming 17 ** language. The code for the "sqlite3" command-line shell is also in a 30 ** a legal notice, here is a blessing: 38 ** This file implements routines used to report what compile-time options 39 ** SQLite was built with. 42 #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* IMP: R-16824-07538 */ 46 ** autoconf-based build [all …]
|
/external/cpuinfo/test/dmesg/ |
D | galaxy-j5.log | 4 [ 0.000000] [0: swapper: 0] Linux version 3.10.49-10283451 (dpi@SWHE8817) (gcc versio… 36 [ 0.000000] [0: swapper: 0] pcpu-alloc: s33280 r8192 d15872 u57344 alloc=14*4096 37 [ 0.000000] [0: swapper: 0] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 39 …-hcd.park=3 androidboot.bootdevice=7824900.sdhci androidboot.sec_atd.tty=/dev/ttyHSL0 loglevel=4 s… 47 [ 0.000000] [0: swapper: 0] Inode-cache hash table entries: 65536 (order: 6, 262144 b… 50 [ 0.000000] [0: swapper: 0] vector : 0xffff0000 - 0xffff1000 ( 4 kB) 51 [ 0.000000] [0: swapper: 0] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) 52 [ 0.000000] [0: swapper: 0] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB) 53 [ 0.000000] [0: swapper: 0] lowmem : 0xccb00000 - 0xf0000000 ( 565 MB) 54 [ 0.000000] [0: swapper: 0] vmalloc : 0xc5500000 - 0xccb00000 ( 118 MB) [all …]
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 4 ** single large file, the entire code can be compiled as a single translation 7 ** of 5% or more are commonly seen when SQLite is compiled as a single 13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within 16 ** if you want a wrapper to interface SQLite with your choice of programming 17 ** language. The code for the "sqlite3" command-line shell is also in a 30 ** a legal notice, here is a blessing: 38 ** This file implements routines used to report what compile-time options 39 ** SQLite was built with. 42 #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* IMP: R-16824-07538 */ 46 ** autoconf-based build [all …]
|
/external/libabigail/tests/data/test-diff-filter/ |
D | test-PR27569-v1.abi | 1 <abi-corpus-group architecture="elf-arm-aarch64"> 2 <abi-corpus path="vmlinux" architecture="elf-arm-aarch64"> 3 <elf-function-symbols> 4 …<elf-symbol name="device_add_disk" type="func-type" binding="global-binding" visibility="default-v… 5 </elf-function-symbols> 6 …<abi-instr version="1.0" address-size="64" path="arch/arm64/crypto/aes-cipher-glue.c" language="LA… 7 <type-decl name="__ARRAY_SIZE_TYPE__" size-in-bits="64" id="7ff19f0f"/> 8 <array-type-def dimensions="1" type-id="3f1a6b60" size-in-bits="64" id="839e8989"> 9 <subrange length="2" type-id="7ff19f0f" id="52efc4ef"/> 10 </array-type-def> [all …]
|
D | test-PR27569-v0.abi | 1 <abi-corpus-group architecture="elf-arm-aarch64"> 2 <abi-corpus path="vmlinux" architecture="elf-arm-aarch64"> 3 <elf-function-symbols> 4 …<elf-symbol name="device_add_disk" type="func-type" binding="global-binding" visibility="default-v… 5 </elf-function-symbols> 6 …<abi-instr version="1.0" address-size="64" path="arch/arm64/crypto/aes-cipher-glue.c" language="LA… 7 <type-decl name="__ARRAY_SIZE_TYPE__" size-in-bits="64" id="7ff19f0f"/> 8 <array-type-def dimensions="1" type-id="3f1a6b60" size-in-bits="64" id="839e8989"> 9 <subrange length="2" type-id="7ff19f0f" id="52efc4ef"/> 10 </array-type-def> [all …]
|