| /freebsd-13.1/contrib/byacc/ |
| H A D | MANIFEST | 72 test/btyacc/btyacc_calc1.error reference output for testing 73 test/btyacc/btyacc_calc1.output reference output for testing 74 test/btyacc/btyacc_calc1.tab.c reference output for testing 75 test/btyacc/btyacc_calc1.tab.h reference output for testing 76 test/btyacc/btyacc_demo.error reference output for testing 77 test/btyacc/btyacc_demo.output reference output for testing 78 test/btyacc/btyacc_demo.tab.c reference output for testing 79 test/btyacc/btyacc_demo.tab.h reference output for testing 92 test/btyacc/calc.error reference output for testing 93 test/btyacc/calc.output reference output for testing [all …]
|
| /freebsd-13.1/tests/sys/kern/ |
| H A D | sys_getrandom.c | 98 char buf[4096], reference[4096]; in ATF_TC_BODY() local 102 _Static_assert(sizeof(reference) == sizeof(buf), "must match"); in ATF_TC_BODY() 103 memset(reference, 0x7C, sizeof(reference)); in ATF_TC_BODY() 108 ATF_REQUIRE_EQ(memcmp(&buf[1], reference, sizeof(reference) - 1), 0); in ATF_TC_BODY() 112 ATF_REQUIRE_EQ(memcmp(&buf[15], reference, sizeof(reference) - 15), 0); in ATF_TC_BODY() 116 ATF_REQUIRE_EQ(memcmp(&buf[255], reference, sizeof(reference) - 255), 0); in ATF_TC_BODY() 120 ATF_REQUIRE_EQ(memcmp(&buf[4095], reference, sizeof(reference) - 4095), 0); in ATF_TC_BODY()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/iio/adc/ |
| H A D | fsl,imx25-gcq.txt | 15 - vref-ext-supply: The regulator supplying the ADC reference voltage. 16 Required when at least one subnode uses the this reference. 17 - vref-xp-supply: The regulator supplying the ADC reference voltage on pin XP. 18 Required when at least one subnode uses this reference. 19 - vref-yp-supply: The regulator supplying the ADC reference voltage on pin YP. 20 Required when at least one subnode uses this reference. 23 Optionally you can define subnodes which define the reference voltage 37 - fsl,adc-refp: specifies the positive reference input as defined in 39 - fsl,adc-refn: specifies the negative reference input as defined in
|
| H A D | adi,ad7124.yaml | 47 description: refin1 supply can be used as reference for conversion. 50 description: refin2 supply can be used as reference for conversion. 53 description: avdd supply can be used as reference for conversion. 78 adi,reference-select: 80 Select the reference source to use when converting on 85 If this field is left empty, internal reference is selected. 133 adi,reference-select = <0>; 141 adi,reference-select = <0>;
|
| /freebsd-13.1/contrib/netbsd-tests/usr.bin/nbperf/ |
| H A D | t_nbperf.sh | 30 rm -f reference.txt hash.c hash.map testprog 43 seq 0 $(($n - 1)) > reference.txt 44 atf_check -o file:reference.txt \ 67 seq 0 $(($n - 1)) > reference.txt 68 atf_check -o file:reference.txt \ 91 seq 0 $(($n - 1)) > reference.txt 92 atf_check -o file:reference.txt \
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/phy/ |
| H A D | ti,phy-am654-serdes.txt | 23 reference clock and right input clock in that order. 25 SERDES. Should have 3 items for CMU reference clock, 35 for selecting the correct reference clock. This can be used while 47 left input reference clock as indicated by <&k3_clks 153 4>, external 48 reference clock as indicated by <&k3_clks 153 1> and right input 49 reference clock as indicated by <&serdes1 AM654_SERDES_LO_REFCLK>. (The 53 first refers to the CMU reference clock, second refers to the left output 54 reference clock and the third refers to the right output reference clock. 57 parent of left input reference clock to MAINHSDIV_CLKOUT4 and parent of 58 CMU reference clock to left input reference clock.
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | simple_ilist.h | 92 using reference = typename OptionsT::reference; variable 138 reference front() { return *begin(); } in front() 140 reference back() { return *rbegin(); } in back() 144 void push_front(reference Node) { insert(begin(), Node); } in push_front() 147 void push_back(reference Node) { insert(end(), Node); } in push_back() 159 iterator insert(iterator I, reference Node) { in insert() 183 void remove(reference N) { list_base_type::remove(*this->getNodePtr(&N)); } in remove() 187 void removeAndDispose(reference N, Disposer dispose) { in removeAndDispose() 279 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
|
| H A D | PackedVector.h | 82 class reference { 87 reference() = delete; 88 reference(PackedVector &vec, unsigned idx) : Vec(vec), Idx(idx) {} in reference() function 90 reference &operator=(T val) { 123 reference operator[](unsigned Idx) { 124 return reference(*this, Idx);
|
| H A D | ilist_iterator.h | 27 using reference = typename OptionsT::reference; 34 using reference = typename OptionsT::const_reference; 68 using reference = typename Traits::reference; 85 explicit ilist_iterator(reference NR) : NodePtr(Access::getNodePtr(&NR)) {} 137 reference operator*() const {
|
| /freebsd-13.1/tools/tools/usbtest/ |
| H A D | usb_msc_test.c | 501 uint8_t *reference = NULL; in usb_msc_test() local 715 if (reference == NULL) { in usb_msc_test() 736 reference[x + 4] = 0xFF; in usb_msc_test() 737 reference[x + 5] = 0x00; in usb_msc_test() 738 reference[x + 6] = 0xFF; in usb_msc_test() 739 reference[x + 7] = 0x00; in usb_msc_test() 742 reference, lun)) { in usb_msc_test() 756 reference, lun)) { in usb_msc_test() 767 reference, lun)) { in usb_msc_test() 855 if (reference) in usb_msc_test() [all …]
|
| /freebsd-13.1/contrib/libarchive/tar/test/ |
| H A D | test_option_gid_gname.c | 30 char *reference, *data; in DEFINE_TEST() local 43 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 67 assertEqualMem(data + 116, reference + 116, 8); in DEFINE_TEST() 70 free(reference); in DEFINE_TEST()
|
| H A D | test_option_uid_uname.c | 30 char *reference, *data; in DEFINE_TEST() local 43 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 80 assertEqualMem(data + 108, reference + 108, 8); in DEFINE_TEST() 84 free(reference); in DEFINE_TEST()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | move_iterator.h | 44 typedef typename iterator_traits<iterator_type>::reference __reference; 49 >::type reference; typedef 51 typedef typename iterator_traits<iterator_type>::reference reference; typedef 79 reference operator*() const { return static_cast<reference>(*__i); } 99 reference operator[](difference_type __n) const { return static_cast<reference>(__i[__n]); }
|
| /freebsd-13.1/contrib/ntp/sntp/ag-tpl/ |
| H A D | Mdoc.pm | 226 my %reference; 229 if ($reference{authors}) { 230 $reference{authors} .= " and @_" 233 $reference{authors} = "@_"; 237 def_macro('.%T', sub { $reference{title} = "@_"; () } ); 238 def_macro('.%O', sub { $reference{optional} = "@_"; () } ); 244 my @ret = $sub->(\%reference); 245 %reference = (); @ret
|
| /freebsd-13.1/contrib/ntp/sntp/ag-tpl/0-old/ |
| H A D | Mdoc.pm | 199 my %reference; 202 if ($reference{authors}) { 203 $reference{authors} .= " and @_" 206 $reference{authors} = "@_"; 210 def_macro('.%T', sub { $reference{title} = "@_"; () } ); 211 def_macro('.%O', sub { $reference{optional} = "@_"; () } ); 217 my @ret = $sub->(\%reference); 218 %reference = (); @ret
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/iio/dac/ |
| H A D | mcp4725.txt | 7 voltage reference on mcp4725. It is used as a voltage reference on 12 used as a voltage reference when this supply is specified. 15 the datasheet: This is offered in cases where the reference voltage 28 /* mcp4726 with the buffered external reference voltage */
|
| H A D | ad7303.txt | 10 - REF-supply: Phandle to the external reference voltage supply. This should 11 only be set if there is an external reference voltage connected to the REF 12 pin. If the property is not set Vdd/2 is used as the reference voltage. 21 adi,use-external-reference;
|
| /freebsd-13.1/contrib/libarchive/libarchive/test/ |
| H A D | test_read_filter_lzop.c | 30 const char *reference = "test_read_filter_lzop.tar.lzo"; in DEFINE_TEST() local 38 extract_reference_file(reference); in DEFINE_TEST() 55 archive_read_open_filename(a, reference, 10240)); in DEFINE_TEST() 60 i, n[i], reference); in DEFINE_TEST()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/net/ |
| H A D | mediatek-dwmac.txt | 26 It should be defined for RMII interface when the reference clock is from MT2712 SoC. 36 reference clock, which is from external PHYs, is connected to RXC pin 40 MT2712 SoC provides the RMII reference clock, which outputs to TXC pin only. 43 2. tx clock inside MAC will be inversed relative to reference clock 45 3. the reference clock, which outputs to TXC pin will be inversed in RMII case 46 when the reference clock is from MT2712 SoC. 49 2. reference clock will be inversed when arrived at MAC in RMII case, when 50 the reference clock is from external PHYs. 52 the reference clock is from MT2712 SoC.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/remoteproc/ |
| H A D | qcom,q6v5.txt | 33 Definition: reference to the interrupts that match interrupt-names 62 Definition: reference to the clocks that match clock-names 90 Definition: reference to the reset-controller for the modem sub-system 91 reference to the list of 3 reset-controllers for the 93 reference to the list of 2 reset-controllers for the modem 121 Definition: reference to the regulators to be held on behalf of the 132 Definition: reference to the regulators to be held on behalf of the 140 Definition: reference to the regulators to be held on behalf of the 146 Definition: reference to power-domains that match power-domain-names 167 Definition: reference to the smem state for requesting the Hexagon to [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/sound/ |
| H A D | qcom,wcd934x.yaml | 40 description: A reference to the 1.8V buck supply 43 description: A reference to the 1.8V SIDO buck supply 46 description: A reference to the 1.8V rx supply 49 description: A reference to the 1.8V tx supply 52 description: A reference to the vbat supply 55 description: A reference to the 1.8V I/O supply 58 description: A reference to the micbias supply
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/regulator/ |
| H A D | st,stm32-vrefbuf.yaml | 7 title: STMicroelectronics STM32 Voltage reference buffer bindings 10 Some STM32 devices embed a voltage reference buffer which can be used as 11 voltage reference for ADCs, DACs and also as voltage reference for external
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | X509_new.pod | 22 X509_new() allocates and initializes a X509 structure with reference count 25 X509_free() decrements the reference count of B<X509> structure B<a> and 26 frees it up if the reference count is zero. If B<a> is NULL nothing is done. 28 X509_up_ref() increments the reference count of B<a>. 30 X509_chain_up_ref() increases the reference count of all certificates in 39 The function X509_chain_up_ref() doesn't just up the reference count of
|
| H A D | SSL_SESSION_free.pod | 27 SSL_SESSION_up_ref() increments the reference count on the given SSL_SESSION 30 SSL_SESSION_free() decrements the reference count of B<session> and removes 32 memory, if the reference count has reached 0. 43 object at the same time. It is therefore crucial to keep the reference 47 when an SSL_SESSION object was completely freed as the reference count 53 which the reference count was explicitly incremented (e.g. 58 incorrect reference counts and therefore program failures.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/iio/ |
| H A D | mount-matrix.txt | 17 reference into the device frame of reference using a translation matrix as 23 relative to some specific device frame of reference. 28 reference to (x,y,z) orientation, with (x,y) corresponding to these axes on the 37 reference. This means that the sensor may be flipped upside-down, left-right, 38 or tilted at any angle relative to the frame of reference. 40 Another frame of reference is how the device with its sensor relates to the 49 - Accelerometers have their world frame of reference toward the center of 54 reference can thus be determined. and users would likely expect a value of 95 respect to the local earth geomagnetic reference frame where (y) is in the 152 frame of reference. [all …]
|