Home
last modified time | relevance | path

Searched refs:Contains (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Dimg,parallel-out.txt11 - dmas: Contains an entry for each entry in dma-names.
16 - clocks : Contains an entry for each entry in clock-names.
22 - resets: Contains a phandle to the parallel out reset signal
24 - reset-names: Contains the reset signal name "rst"
28 - interrupts : Contains the parallel out interrupt, if present
H A Dimg,spdif-out.txt11 - dmas: Contains an entry for each entry in dma-names.
16 - clocks : Contains an entry for each entry in clock-names.
22 - resets: Contains a phandle to the spdif out reset signal
24 - reset-names: Contains the reset signal name "rst"
28 - interrupts : Contains the parallel out interrupt, if present
H A Dimg,i2s-in.txt11 - clocks : Contains an entry for each entry in clock-names
16 - dmas: Contains an entry for each entry in dma-names.
25 - interrupts : Contains the I2S in interrupts. Depending on
31 - resets: Contains a phandle to the I2S in reset signal
33 - reset-names: Contains the reset signal name "rst"
H A Dimg,i2s-out.txt11 - clocks : Contains an entry for each entry in clock-names
17 - dmas: Contains an entry for each entry in dma-names.
24 - resets: Contains a phandle to the I2S out reset signal
26 - reset-names: Contains the reset signal name "rst"
30 - interrupts : Contains the I2S out interrupts. Depending on
H A Dimg,spdif-in.txt11 - dmas: Contains an entry for each entry in dma-names.
16 - clocks : Contains an entry for each entry in clock-names
28 - interrupts : Contains the spdif in interrupt, if present
H A Dfsl,asrc.txt20 - interrupts : Contains the spdif interrupt.
25 - dma-names : Contains "rxa", "rxb", "rxc", "txa", "txb" and "txc".
27 - clocks : Contains an entry for each entry in clock-names.
29 - clock-names : Contains the following entries
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc72 using testing::Contains;
1126 EXPECT_THAT(some_list, Contains(1)); in TEST()
1152 EXPECT_THAT(some_set, Contains(2)); in TEST()
1178 m = Contains(3); in TEST()
1181 m = Contains(GreaterThan(0)); in TEST()
1184 m = Contains(GreaterThan(10)); in TEST()
1189 Matcher<vector<int> > m = Contains(1); in TEST()
1231 EXPECT_THAT(a, Contains(Gt(2))); in TEST()
1232 EXPECT_THAT(a, Not(Contains(Gt(4)))); in TEST()
1245 EXPECT_THAT(a, Contains(Contains(5))); in TEST()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/hsi/
H A Domap-ssi.txt10 - reg-names: Contains the values "sys" and "gdd" (in this order).
11 - reg: Contains a matching register specifier for each entry
13 - interrupt-names: Contains the value "gdd_mpu".
14 - interrupts: Contains matching interrupt information for each entry
22 - clocks: Contains a matching clock specifier for each entry in
33 - reg-names: Contains the values "tx" and "rx" (in this order).
34 - reg: Contains a matching register specifier for each entry
/freebsd-13.1/sys/contrib/device-tree/Bindings/nios2/
H A Dnios2.txt12 - reg: Contains CPU index.
16 - clock-frequency: Contains the clock frequency for CPU, in Hz.
17 - dcache-line-size: Contains data cache line size.
18 - icache-line-size: Contains instruction line size.
19 - dcache-size: Contains data cache size.
20 - icache-size: Contains instruction cache size.
/freebsd-13.1/sys/contrib/device-tree/Bindings/mailbox/
H A Dti,message-manager.txt18 - reg: Contains the register map per reg-names.
19 - #mbox-cells Shall be 2. Contains the queue ID and proxy ID in that
21 - interrupt-names: Contains interrupt names matching the rx transfer path
26 - interrupts: Contains the interrupt information corresponding to
H A Dti,secure-proxy.txt19 - reg: Contains the register map per reg-names.
22 - interrupt-names: Contains interrupt names matching the rx transfer path
25 - interrupts: Contains the interrupt information corresponding to
H A Darm-mhu.txt19 - reg: Contains the mailbox register address range (base
22 - interrupts: Contains the interrupt information corresponding to
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h77 bool Contains(BaseType r) const { in Contains() function
85 bool Contains(const Range &range) const { in Contains() function
86 return Contains(range.GetRangeBase()) && in Contains()
284 if (pos != end && pos->Contains(addr)) { in FindEntryIndexThatContains()
288 if (pos->Contains(addr)) in FindEntryIndexThatContains()
306 if (pos != end && pos->Contains(addr)) { in FindEntryThatContains()
310 if (pos->Contains(addr)) { in FindEntryThatContains()
328 if (pos != end && pos->Contains(range)) { in FindEntryThatContains()
332 if (pos->Contains(range)) { in FindEntryThatContains()
537 if (pos != end && pos->Contains(range)) in FindEntryThatContains()
[all …]
H A DVMRange.h69 bool Contains(lldb::addr_t addr) const { in Contains() function
73 bool Contains(const VMRange &range) const { in Contains() function
74 if (Contains(range.GetBaseAddress())) { in Contains()
/freebsd-13.1/sys/contrib/device-tree/Bindings/remoteproc/
H A Dmtk,scp.txt11 - reg-names Contains the corresponding names for the two memory
14 - clock-names Contains the corresponding name for the clock. This
24 - mtk,rpmsg-name Contains the name for the rpmsg device. Used to match
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DBlock.h99 bool Contains(lldb::addr_t range_offset) const;
109 bool Contains(const Range &range) const;
119 bool Contains(const Block *block) const;
/freebsd-13.1/sys/contrib/device-tree/Bindings/crypto/
H A Datmel-crypto.txt13 - dma-names: Contains one identifier string for each DMA specifier
35 - dma-names: Contains one identifier string for each DMA specifier
58 - dma-names: Contains one identifier string for each DMA specifier
/freebsd-13.1/sys/contrib/device-tree/Bindings/rtc/
H A Drtc-cmos.txt10 - ctrl-reg : Contains the initial value of the control register also
12 - freq-reg : Contains the initial value of the frequency register also
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp27 return r.Contains(value); in ContainsValue()
34 return r.Contains(range); in ContainsRange()
/freebsd-13.1/sys/contrib/device-tree/Bindings/nds32/
H A Dcpus.txt24 - reg: Contains CPU index.
25 - clock-frequency: Contains the clock frequency for CPU, in Hz.
/freebsd-13.1/cddl/usr.sbin/zfsd/
H A Dzfsd_event.cc277 if (!Contains("class") && !Contains("type")) { in Process()
301 if (!Contains("pool_guid") || !Contains("vdev_guid")) { in Process()
/freebsd-13.1/sys/contrib/device-tree/Bindings/watchdog/
H A Dmarvel.txt34 - interrupts : Contains the IRQ for watchdog expiration
35 - timeout-sec : Contains the watchdog timeout in seconds
/freebsd-13.1/sys/contrib/device-tree/Bindings/reset/
H A Dimg,pistachio-reset.txt18 - compatible: Contains "img,pistachio-reset"
20 - #reset-cells: Contains 1
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h175 static bool Contains(data_type B, key_type K) {
216 static bool Contains(data_type B, key_type K) {
244 static bool Contains(data_type L, key_type K) {
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp86 if (parent_block != nullptr && !parent_block->Contains(range)) in Dump()
169 bool Block::Contains(addr_t range_offset) const { in Contains() function in Block
173 bool Block::Contains(const Block *block) const { in Contains() function in Block
187 bool Block::Contains(const Range &range) const { in Contains() function in Block
326 if (parent_block && !parent_block->Contains(range)) { in AddRange()

1234567