Home
last modified time | relevance | path

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

12345678

/freebsd/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/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/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/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/sys/contrib/device-tree/Bindings/remoteproc/
H A Dmtk,scp.txt11 - reg-names Contains the corresponding names for the memory regions:
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/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h93 bool Contains(BaseType r) const { in Contains() function
101 bool Contains(const Range &range) const { in Contains() function
102 return Contains(range.GetRangeBase()) && in Contains()
327 if (pos != end && pos->Contains(addr)) { in FindEntryIndexThatContains()
331 if (pos->Contains(addr)) in FindEntryIndexThatContains()
349 if (pos != end && pos->Contains(addr)) { in FindEntryThatContains()
353 if (pos->Contains(addr)) { in FindEntryThatContains()
371 if (pos != end && pos->Contains(range)) { in FindEntryThatContains()
375 if (pos->Contains(range)) { in FindEntryThatContains()
583 while (pos != begin && pos[-1].Contains(rang 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/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/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/sys/tools/syscalls/
H A DREADME.md25 * `config.lua` - Contains the global configuration table and associated
34 * `freebsd-syscall.lua` - Contains the master system call table after
48 * `util.lua` - Contains utility functions.
/freebsd/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/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc74 EXPECT_CALL(helper, Call(Contains(Pointee(2)))); in TEST()
3020 EXPECT_THAT(some_list, Contains(1)); in TEST()
3021 EXPECT_THAT(some_list, Contains(Gt(2.5))); in TEST()
3022 EXPECT_THAT(some_list, Contains(Eq(2.0f))); in TEST()
3029 EXPECT_THAT(another_list, Contains(std::string("fee"))); in TEST()
3036 EXPECT_THAT(some_list, Not(Contains(4))); in TEST()
3044 EXPECT_THAT(some_set, Contains(Eq(1.0))); in TEST()
3045 EXPECT_THAT(some_set, Contains(Eq(3.0f))); in TEST()
3046 EXPECT_THAT(some_set, Contains(2)); in TEST()
3053 EXPECT_THAT(another_set, Contains(Eq(std::string("fum")))); in TEST()
[all …]
H A Dgmock-matchers-misc_test.cc1397 EXPECT_THAT(some_list, Contains(3).Times(2)); in TEST()
1398 EXPECT_THAT(some_list, Contains(2).Times(1)); in TEST()
1399 EXPECT_THAT(some_list, Contains(Ge(2)).Times(3)); in TEST()
1400 EXPECT_THAT(some_list, Contains(Ge(2)).Times(Gt(2))); in TEST()
1401 EXPECT_THAT(some_list, Contains(4).Times(0)); in TEST()
1402 EXPECT_THAT(some_list, Contains(_).Times(4)); in TEST()
1403 EXPECT_THAT(some_list, Not(Contains(5).Times(1))); in TEST()
1404 EXPECT_THAT(some_list, Contains(5).Times(_)); // Times(_) always matches in TEST()
1405 EXPECT_THAT(some_list, Not(Contains(3).Times(1))); in TEST()
1406 EXPECT_THAT(some_list, Contains(3).Times(Not(1))); in TEST()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp27 [&](const VMRange &r) { return r.Contains(value); }); in ContainsValue()
33 [&](const VMRange &r) { return r.Contains(range); }); in ContainsRange()
/freebsd/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/cddl/usr.sbin/zfsd/
H A Dzfsd_event.cc279 if (!Contains("class") && !Contains("type")) { in Process()
303 if (!Contains("pool_guid") || !Contains("vdev_guid")) { in Process()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp87 if (parent_block != nullptr && !parent_block->Contains(range)) in Dump()
127 if (!Contains(offset)) in FindInnermostBlockByOffset()
180 bool Block::Contains(addr_t range_offset) const { in Contains() function in Block
184 bool Block::Contains(const Block *block) const { in Contains() function in Block
198 bool Block::Contains(const Range &range) const { in Contains() function in Block
353 if (parent_block && !parent_block->Contains(range)) { in AddRange()
/freebsd/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

12345678