Home
last modified time | relevance | path

Searched full:abc (Results 1 – 25 of 230) sorted by relevance

12345678910

/OK3568_Linux_fs/u-boot/common/
H A Dandroid_ab.c24 struct android_bootloader_control *abc) in android_boot_control_compute_crc() argument
26 return crc32(0, (void *)abc, offsetof(typeof(*abc), crc32_le)); in android_boot_control_compute_crc()
34 void android_boot_control_default(struct android_bootloader_control *abc) in android_boot_control_default() argument
44 memcpy(abc->slot_suffix, "a\0\0\0", 4); in android_boot_control_default()
45 abc->magic = ANDROID_BOOT_CTRL_MAGIC; in android_boot_control_default()
46 abc->version = ANDROID_BOOT_CTRL_VERSION; in android_boot_control_default()
47 abc->nb_slot = ARRAY_SIZE(abc->slot_info); in android_boot_control_default()
48 memset(abc->reserved0, 0, sizeof(abc->reserved0)); in android_boot_control_default()
49 for (i = 0; i < abc->nb_slot; ++i) { in android_boot_control_default()
50 abc->slot_info[i] = metadata; in android_boot_control_default()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dnamedtuple_with_abc.py9 * named tuple mix-in + ABC (abstract base class) recipe,
13 -- enriching it with the 'abc' attribute (an abstract base class + mix-in
15 newly created named tuple as a subclass of namedtuple.abc.
28 class Credentials(namedtuple.abc):
39 from abc import ABCMeta, abstractproperty
69 _namedtuple.abc = _NamedTupleABC
74 '''Named tuple factory with namedtuple.abc subclass registration.'''
90 class MyRecord(namedtuple.abc):
104 class MyAbstractRecord(namedtuple.abc):
214 # All that record classes are real subclasses of namedtuple.abc:
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-extended/mozjs/mozjs-78/
H A D0005-Fixup-compatibility-of-mozbuild-with-Python-3.10.patch43 +class ConfigSettings(collections.abc.Mapping):
52 + class ConfigSection(collections.abc.MutableMapping, object):
65 + if not isinstance(command.conditions, collections.abc.Iterable):
79 +from collections.abc import Iterable
92 +from collections.abc import Iterable
105 + class StringListAdaptor(collections.abc.Sequence):
118 + if isinstance(ignored_exceptions, collections.abc.Iterable):
132 +from collections.abc import MutableSequence
145 +from collections.abc import Iterable
158 +from collections.abc import MutableMapping
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/efivarfs/
H A Defivarfs.sh149 local file_list="abc dump-type0-11-1-1362436005 1234 -"
172 -1234-1234-1234-123456789abc
178 -12345678-1234-1234-1234-123456789abc
179 a-12345678=1234-1234-1234-123456789abc
180 a-12345678-1234=1234-1234-123456789abc
181 a-12345678-1234-1234=1234-123456789abc
182 a-12345678-1234-1234-1234=123456789abc
183 1112345678-1234-1234-1234-123456789abc"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-slip-dbus/
H A D9b939c0b534c1b7958fa0a3c7aedf30bca910431.patch4 Subject: [PATCH] Python 3.10+ fix: Use collections.abc.Callable instead of
25 +import collections.abc
34 + assert(func is None or isinstance(func, collections.abc.Callable))
42 + isinstance(authfail_callback, collections.abc.Callable))
55 +import collections.abc
64 + assert(isinstance(hook, collections.abc.Callable))
73 + assert isinstance(hook, collections.abc.Callable)
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/4g/
H A Dmainwindow.cpp62 QString abc = myprocess->readAllStandardOutput(); in result() local
63 if(abc.length()>1)ui->result->append(abc.trimmed()); in result()
70 QString abc = ping_process->readAllStandardOutput(); in ping_result() local
71 if(abc.length()>1)ui->result->append(abc.trimmed()); in ping_result()
/OK3568_Linux_fs/app/forlinx/forlinx_qt/4g/
H A Dmainwindow.cpp62 QString abc = myprocess->readAllStandardOutput(); in result() local
63 if(abc.length()>1)ui->result->append(abc.trimmed()); in result()
70 QString abc = ping_process->readAllStandardOutput(); in ping_result() local
71 if(abc.length()>1)ui->result->append(abc.trimmed()); in ping_result()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A DDefine.html176 <pre class="example">(gdb) define-prefix abc
177 (gdb) define-prefix abc def
178 (gdb) define abc def
179 Type commands for definition of &quot;abc def&quot;.
183 (gdb) define abc def ghi
184 Type commands for definition of &quot;abc def ghi&quot;.
188 (gdb) define abc def
191 Type commands for definition of &quot;abc def&quot;.
195 (gdb) abc def ghi
197 (gdb) abc def
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/
H A DDefine.html176 <pre class="example">(gdb) define-prefix abc
177 (gdb) define-prefix abc def
178 (gdb) define abc def
179 Type commands for definition of &quot;abc def&quot;.
183 (gdb) define abc def ghi
184 Type commands for definition of &quot;abc def ghi&quot;.
188 (gdb) define abc def
191 Type commands for definition of &quot;abc def&quot;.
195 (gdb) abc def ghi
197 (gdb) abc def
/OK3568_Linux_fs/kernel/arch/powerpc/math-emu/
H A Dmath.c153 #define ABC 4 macro
275 case FMSUBS: func = fmsubs; type = ABC; break; in do_mathemu()
276 case FMADDS: func = fmadds; type = ABC; break; in do_mathemu()
277 case FNMSUBS: func = fnmsubs; type = ABC; break; in do_mathemu()
278 case FNMADDS: func = fnmadds; type = ABC; break; in do_mathemu()
292 case FSEL: func = fsel; type = ABC; break; in do_mathemu()
295 case FMSUB: func = fmsub; type = ABC; break; in do_mathemu()
296 case FMADD: func = fmadd; type = ABC; break; in do_mathemu()
297 case FNMSUB: func = fnmsub; type = ABC; break; in do_mathemu()
298 case FNMADD: func = fnmadd; type = ABC; break; in do_mathemu()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dhnd_debug.h125 /* ver=abc.abc.abc.abcdefgh size = 24bytes. 6 bytes extra for expansion */
163 /* ver=abc.abc.abc.abcdefgh size = 24bytes. 6 bytes extra for expansion */
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dhnd_debug.h125 /* ver=abc.abc.abc.abcdefgh size = 24bytes. 6 bytes extra for expansion */
163 /* ver=abc.abc.abc.abcdefgh size = 24bytes. 6 bytes extra for expansion */
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/gyp/gyp/
H A D0001-Fix-for-Python-3.10-compatibility.patch6 The collections.abc module replaces collections for Python 3.10
22 +import collections.abc
31 +class OrderedSet(collections.abc.MutableSet):
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dcompress_doc.bbclass11 # DOC_COMPRESS_LIST:append = ' abc'
12 # DOC_COMPRESS = 'abc'
13 # DOC_COMPRESS_CMD[abc] = 'abc compress cmd ***'
14 # DOC_DECOMPRESS_CMD[abc] = 'abc decompress cmd ***'
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/include/
H A Dhnd_debug.h109 char ver_signature[HND_DEBUG_BUILD_SIGNATURE_VER_LEN]; /* ver=abc.abc.abc.abc */
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/include/
H A Dhnd_debug.h109 char ver_signature[HND_DEBUG_BUILD_SIGNATURE_VER_LEN]; /* ver=abc.abc.abc.abc */
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/include/
H A Dhnd_debug.h109 char ver_signature[HND_DEBUG_BUILD_SIGNATURE_VER_LEN]; /* ver=abc.abc.abc.abc */
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-t/
H A Dau-MidNorthCoast1 # Australia ABC Mid North Coast
2 # ABC middle brother
67 # ABC Moombil
H A Dau-Wollongong10 # ABC UHF52
79 # ABC UHF51
136 # ABC, Prime, WIN, Ten are identical to Wollongong / North
H A Dau-Tamworth41 # ABC
108 # ABC
175 # ABC
/OK3568_Linux_fs/kernel/Documentation/admin-guide/media/
H A Ddvb_intro.rst111 ABC 226.500 Mhz
168 [ABC HDTV]
183 [ABC TV Melbourne]
198 [ABC TV 2]
213 [ABC TV 3]
228 [ABC TV 4]
243 [ABC DiG Radio]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dcow.py158 c['d'] = {'abc': 10, 'bcd': 20}
164 self.assertEqual({'abc': 10, 'bcd': 20}, c['d'])
168 self.assertEqual({'abc': 10, 'bcd': 20}, copy['d'])
173 copy['d']['abc'] = 20
177 self.assertEqual({'abc': 10, 'bcd': 20}, c['d'])
180 self.assertEqual({'abc': 20, 'bcd': 20}, copy['d'])
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/include/
H A Dhnd_debug.h109 char ver_signature[HND_DEBUG_BUILD_SIGNATURE_VER_LEN]; /* ver=abc.abc.abc.abc */
/OK3568_Linux_fs/u-boot/tools/
H A Dmingw_support.c81 char s[] = "-abc-=-def";
83 x = strtok_r(s, "-", &sp); // x = "abc", sp = "=-def"
86 // s = "abc\0-def\0"
/OK3568_Linux_fs/buildroot/package/python-backports-abc/
H A DConfig.in2 bool "python-backports-abc"
5 A backport of recent additions to the 'collections.abc'

12345678910