Home
last modified time | relevance | path

Searched full:set (Results 1 – 25 of 14487) sorted by relevance

12345678910>>...580

/external/syzkaller/dashboard/config/
Dupstream-kmsan.config64 # CONFIG_COMPILE_TEST is not set
66 # CONFIG_LOCALVERSION_AUTO is not set
74 # CONFIG_KERNEL_BZIP2 is not set
75 # CONFIG_KERNEL_LZMA is not set
76 # CONFIG_KERNEL_XZ is not set
77 # CONFIG_KERNEL_LZO is not set
78 # CONFIG_KERNEL_LZ4 is not set
109 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
124 # CONFIG_HZ_PERIODIC is not set
126 # CONFIG_NO_HZ_FULL is not set
[all …]
Dupstream-kasan.config71 # CONFIG_COMPILE_TEST is not set
73 # CONFIG_LOCALVERSION_AUTO is not set
81 # CONFIG_KERNEL_BZIP2 is not set
82 # CONFIG_KERNEL_LZMA is not set
83 # CONFIG_KERNEL_XZ is not set
84 # CONFIG_KERNEL_LZO is not set
85 # CONFIG_KERNEL_LZ4 is not set
116 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
131 # CONFIG_HZ_PERIODIC is not set
133 # CONFIG_NO_HZ_FULL is not set
[all …]
/external/iproute2/testsuite/configs/
Dall-2.45 # CONFIG_SBUS is not set
23 # CONFIG_M386 is not set
24 # CONFIG_M486 is not set
25 # CONFIG_M586 is not set
26 # CONFIG_M586TSC is not set
27 # CONFIG_M586MMX is not set
28 # CONFIG_M686 is not set
29 # CONFIG_MPENTIUMIII is not set
31 # CONFIG_MK6 is not set
32 # CONFIG_MK7 is not set
[all …]
Dall-no-act26 # CONFIG_BSD_PROCESS_ACCT is not set
35 # CONFIG_EMBEDDED is not set
37 # CONFIG_KALLSYMS_ALL is not set
38 # CONFIG_KALLSYMS_EXTRA_PASS is not set
41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
47 # CONFIG_TINY_SHMEM is not set
56 # CONFIG_MODVERSIONS is not set
57 # CONFIG_MODULE_SRCVERSION_ALL is not set
65 # CONFIG_X86_ELAN is not set
66 # CONFIG_X86_VOYAGER is not set
[all …]
Dall-police-act26 # CONFIG_BSD_PROCESS_ACCT is not set
35 # CONFIG_EMBEDDED is not set
37 # CONFIG_KALLSYMS_ALL is not set
38 # CONFIG_KALLSYMS_EXTRA_PASS is not set
41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
47 # CONFIG_TINY_SHMEM is not set
56 # CONFIG_MODVERSIONS is not set
57 # CONFIG_MODULE_SRCVERSION_ALL is not set
65 # CONFIG_X86_ELAN is not set
66 # CONFIG_X86_VOYAGER is not set
[all …]
/external/curl/CMake/Platforms/
DWindowsCache.cmake3 set(HAVE_LIBDL 0)
4 set(HAVE_LIBUCB 0)
5 set(HAVE_LIBSOCKET 0)
6 set(NOT_NEED_LIBNSL 0)
7 set(HAVE_LIBNSL 0)
8 set(HAVE_GETHOSTNAME 1)
9 set(HAVE_LIBZ 0)
10 set(HAVE_LIBCRYPTO 0)
12 set(HAVE_DLOPEN 0)
14 set(HAVE_ALLOCA_H 0)
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/
DUnicodeSetStates.txt5 '[' n set-open ^set-finish
6 '\' n set-escape ^set-finish
10 # [set expression] parsing,
11 # All states involved in parsing set expressions have names beginning with "set-"
14 set-open:
15 '^' n set-open2 doSetNegate
16 ':' set-posix doSetPosixProp
17 default set-open2
19 set-open2:
20 ']' n set-after-lit doSetLiteral
[all …]
/external/eigen/bench/btl/data/
Dgnuplot_common_settings.hh1 set noclip points
2 set clip one
3 set noclip two
4 set bar 1.000000
5 set border 31 lt -1 lw 1.000
6 set xdata
7 set ydata
8 set zdata
9 set x2data
10 set y2data
[all …]
/external/toybox/
D.config11 # CONFIG_TOYBOX_DEBUG is not set
16 # CONFIG_TOYBOX_FREE is not set
17 # CONFIG_TOYBOX_GETRANDOM is not set
24 # CONFIG_TOYBOX_LSM_NONE is not set
25 # CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN is not set
29 # CONFIG_TOYBOX_PEDANTIC_ARGS is not set
31 # CONFIG_TOYBOX_SHADOW is not set
32 # CONFIG_TOYBOX_SMACK is not set
33 # CONFIG_TOYBOX_SUID is not set
36 # CONFIG_TOYBOX_UTMPX is not set
[all …]
/external/harfbuzz_ng/src/
Dhb-set.cc27 #include "hb-set.hh"
31 * SECTION:hb-set
32 * @title: hb-set
33 * @short_description: Object representing a set of integers
36 * Set objects represent a mathematical set of integer values. They are
37 * used in non-shaping API to query certain set of characters or glyphs,
52 hb_set_t *set; in hb_set_create() local
54 if (!(set = hb_object_create<hb_set_t> ())) in hb_set_create()
57 set->init_shallow (); in hb_set_create()
59 return set; in hb_set_create()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DSparseMultiSetTest.cpp19 // Empty set tests.
21 USet Set; in TEST() local
22 EXPECT_TRUE(Set.empty()); in TEST()
23 EXPECT_EQ(0u, Set.size()); in TEST()
25 Set.setUniverse(10); in TEST()
27 // Lookups on empty set. in TEST()
28 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST()
29 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST()
32 const USet &CSet = Set; in TEST()
40 // Single entry set tests.
[all …]
DSparseSetTest.cpp19 // Empty set tests.
21 USet Set; in TEST() local
22 EXPECT_TRUE(Set.empty()); in TEST()
23 EXPECT_TRUE(Set.begin() == Set.end()); in TEST()
24 EXPECT_EQ(0u, Set.size()); in TEST()
26 Set.setUniverse(10); in TEST()
28 // Lookups on empty set. in TEST()
29 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST()
30 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST()
33 const USet &CSet = Set; in TEST()
[all …]
/external/llvm/unittests/ADT/
DSparseMultiSetTest.cpp19 // Empty set tests.
21 USet Set; in TEST() local
22 EXPECT_TRUE(Set.empty()); in TEST()
23 EXPECT_EQ(0u, Set.size()); in TEST()
25 Set.setUniverse(10); in TEST()
27 // Lookups on empty set. in TEST()
28 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST()
29 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST()
32 const USet &CSet = Set; in TEST()
40 // Single entry set tests.
[all …]
DSparseSetTest.cpp19 // Empty set tests.
21 USet Set; in TEST() local
22 EXPECT_TRUE(Set.empty()); in TEST()
23 EXPECT_TRUE(Set.begin() == Set.end()); in TEST()
24 EXPECT_EQ(0u, Set.size()); in TEST()
26 Set.setUniverse(10); in TEST()
28 // Lookups on empty set. in TEST()
29 EXPECT_TRUE(Set.find(0) == Set.end()); in TEST()
30 EXPECT_TRUE(Set.find(9) == Set.end()); in TEST()
33 const USet &CSet = Set; in TEST()
[all …]
/external/libmtp/logs/
Dmtp-detect-sandisk-sansa-fuzev2.txt59 1012: Set object protection
62 1016: Set device property value
67 9103: Set license response
79 9173: Set Current Time Position
90 9804: Set object property value
93 9811: Set object references
112 dc07: ObjectFileName STRING data type GET/SET
113 dc09: DateModified STRING data type GET/SET
115 dc0d: Hidden UINT16 data type enumeration: 0, 1, GET/SET
117 dc44: Name STRING data type GET/SET
[all …]
Dmtp-detect-sonyericsson-st18a.txt60 1016: Set device property value
68 9804: Set object property value
70 9806: Set object property list
73 9811: Set object references
74 1012: Set object protection
106 dc07: Object File Name STRING data type GET/SET
107 dc44: Name STRING data type GET/SET
108 dc0a: Keywords STRING data type GET/SET
109 dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
117 dc07: Object File Name STRING data type GET/SET
[all …]
Dmtp-detect-trekstor-vibez.txt48 1016: Set device property value
49 9804: Set object property value
50 1012: Set object protection
51 9811: Set object references
56 9103: Set license response
86 dc9b: AlbumArtist STRING data type GET/SET
87 dc9a: AlbumName STRING data type GET/SET
88 dc46: Artist STRING data type GET/SET
89 dc06: AssociationDesc UINT32 data type ANY 32BIT VALUE form GET/SET
90 dc05: AssociationType UINT16 data type enumeration: 0, GET/SET
[all …]
Dmtp-detect-samsung-yp-z3.txt55 1016: Set device property value
61 9804: Set object property value
63 9806: Set object property list
66 9811: Set object references
70 9103: Set license response
93 dc05: Association Type UINT16 data type enumeration: 0, 1, GET/SET
94 dc06: Association Desc UINT32 data type ANY 32BIT VALUE form GET/SET
95 dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
96 dc09: Date Modified STRING data type DATETIME FORM GET/SET
97 dc0a: Keywords STRING data type GET/SET
[all …]
Dmtp-detect-sonyericsson-st15i.txt56 1016: Set device property value
64 9804: Set object property value
66 9806: Set object property list
69 9811: Set object references
70 1012: Set object protection
102 dc07: Object File Name STRING data type GET/SET
103 dc44: Name STRING data type GET/SET
104 dc0a: Keywords STRING data type GET/SET
105 dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
113 dc07: Object File Name STRING data type GET/SET
[all …]
Dmtp-detect-sonyericsson-xperia-sk17i.txt56 1016: Set device property value
64 9804: Set object property value
66 9806: Set object property list
69 9811: Set object references
70 1012: Set object protection
102 dc07: Object File Name STRING data type GET/SET
103 dc44: Name STRING data type GET/SET
104 dc0a: Keywords STRING data type GET/SET
105 dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
113 dc07: Object File Name STRING data type GET/SET
[all …]
Dmtp-detect-samsung-gt-s7530.txt59 1016: Set device property value
63 9811: Set object references
68 9804: Set object property value
70 9806: Set object property list
80 9103: Set license response
200 da99: Unknown property UINT128 data type GET/SET
202 dab0: Unknown property UINT8 data type ANY 8BIT VALUE form GET/SET
203 da97: Unknown property UINT128 data type GET/SET
204 dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
205 dc07: Object File Name STRING data type GET/SET
[all …]
Dmtp-detect-microsoft-windows-phone-nokia-lumia-800.txt75 1016: Set device property value
79 9811: Set object references
84 9804: Set object property value
86 9806: Set object property list
96 9103: Set license response
216 da99: Unknown property UINT128 data type GET/SET
218 dab0: Unknown property UINT8 data type ANY 8BIT VALUE form GET/SET
219 da97: Unknown property UINT128 data type GET/SET
220 dc4f: Non Consumable UINT8 data type enumeration: 0, 1, GET/SET
221 dc07: Object File Name STRING data type GET/SET
[all …]
Dmtp-detect-philips-gogear-vibe-SA3VBE04PN_02.txt57 1016: Set device property value
61 9804: Set object property value
63 9806: Set object property list
67 9103: Set license response
78 9811: Set object references
89 1012: Set object protection
110 dc07: Object File Name STRING data type REGULAR EXPRESSION FORM GET/SET
111 dc08: Date Created STRING data type DATETIME FORM GET/SET
114 dc42: Sync ID STRING data type GET/SET
115 dc0d: Hidden UINT16 data type enumeration: 0, 1, GET/SET
[all …]
Dmtp-detect-microsoft-kin-twom.txt67 1016: Set device property value
71 9811: Set object references
76 9804: Set object property value
78 9806: Set object property list
88 9103: Set license response
175 da99: Unknown property UINT128 data type GET/SET
177 dc44: Name STRING data type GET/SET
179 dab0: Unknown property UINT8 data type ANY 8BIT VALUE form GET/SET
180 dab7: Unknown property STRING data type GET/SET
181 da97: Unknown property UINT128 data type GET/SET
[all …]
/external/u-boot/board/cobra5272/bdm/
Dcobra5272_uboot.gdb12 set $mbar = 0x10000001
13 set $scr = $mbar - 1 + 0x004
14 set $spr = $mbar - 1 + 0x006
15 set $pmr = $mbar - 1 + 0x008
16 set $apmr = $mbar - 1 + 0x00e
17 set $dir = $mbar - 1 + 0x010
18 set $icr1 = $mbar - 1 + 0x020
19 set $icr2 = $mbar - 1 + 0x024
20 set $icr3 = $mbar - 1 + 0x028
21 set $icr4 = $mbar - 1 + 0x02c
[all …]

12345678910>>...580