/freebsd/contrib/byacc/ |
H A D | MANIFEST | 73 test/btyacc/btyacc_calc1.error reference output for testing 74 test/btyacc/btyacc_calc1.output reference output for testing 75 test/btyacc/btyacc_calc1.tab.c reference output for testing 76 test/btyacc/btyacc_calc1.tab.h reference output for testing 77 test/btyacc/btyacc_demo.error reference output for testing 78 test/btyacc/btyacc_demo.output reference output for testing 79 test/btyacc/btyacc_demo.tab.c reference output for testing 80 test/btyacc/btyacc_demo.tab.h reference output for testing 81 test/btyacc/btyacc_destroy1.error reference output for testing 82 test/btyacc/btyacc_destroy1.output reference output for testing [all …]
|
/freebsd/tests/sys/kern/ |
H A D | sys_getrandom.c | 95 char buf[4096], reference[4096]; in ATF_TC_BODY() local 99 _Static_assert(sizeof(reference) == sizeof(buf), "must match"); in ATF_TC_BODY() 100 memset(reference, 0x7C, sizeof(reference)); in ATF_TC_BODY() 105 ATF_REQUIRE_EQ(memcmp(&buf[1], reference, sizeof(reference) - 1), 0); in ATF_TC_BODY() 109 ATF_REQUIRE_EQ(memcmp(&buf[15], reference, sizeof(reference) - 15), 0); in ATF_TC_BODY() 113 ATF_REQUIRE_EQ(memcmp(&buf[255], reference, sizeof(reference) - 255), 0); in ATF_TC_BODY() 117 ATF_REQUIRE_EQ(memcmp(&buf[4095], reference, sizeof(reference) - 4095), 0); in ATF_TC_BODY()
|
/freebsd/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
|
/freebsd/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/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/tools/tools/usbtest/ |
H A D | usb_msc_test.c | 345 uint8_t *buffer, uint8_t *reference) in do_io_test() argument 452 reference + (io_offset * block_size), in do_io_test() 464 reference + (io_offset * block_size), lun); in do_io_test() 500 uint8_t *reference = NULL; in usb_msc_test() local 713 reference = malloc(block_size * lba_max); in usb_msc_test() 714 if (reference == NULL) { in usb_msc_test() 731 reference[x + 0] = x >> 24; in usb_msc_test() 732 reference[x + 1] = x >> 16; in usb_msc_test() 733 reference[x + 2] = x >> 8; in usb_msc_test() 734 reference[x + 3] = x >> 0; in usb_msc_test() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | simple_ilist.h | 35 /// insert(). These all take values by reference (not by pointer), except for 39 /// remove(), which takes a reference to the node to remove, \a erase(), which 92 using reference = typename OptionsT::reference; variable 144 reference front() { return *begin(); } 146 reference back() { return *rbegin(); } 150 void push_front(reference Node) { insert(begin(), Node); } 153 void push_back(reference Node) { insert(end(), Node); } 164 /// Insert a node by reference; never copies. in insert() 165 iterator insert(iterator I, reference Nod in insert() [all...] |
H A D | PackedVector.h | 83 class reference { 88 reference() = delete; 89 reference(PackedVector &vec, unsigned idx) : Vec(vec), Idx(idx) {} in reference() function 91 reference &operator=(T val) { 124 reference operator[](unsigned Idx) { 125 return reference(*this, Idx);
|
H A D | ilist_iterator.h | 27 using reference = typename OptionsT::reference; 34 using reference = typename OptionsT::const_reference; 98 using reference = typename Traits::reference; 115 explicit ilist_iterator(reference NR) : NodePtr(Access::getNodePtr(&NR)) {} 167 reference operator*() const { 232 using reference = typename Traits::reference; 257 explicit ilist_iterator_w_bits(reference NR) 321 reference operator*() const {
|
H A D | ilist.h | 116 typedef typename base_list_type::reference reference; 201 pointer remove(reference IT) { return remove(iterator(IT)); } 210 iterator erase(reference IT) { return erase(iterator(IT)); } 278 void splice(iterator where, iplist_impl &L2, reference N) { 297 pointer getPrevNode(reference N) const { 305 return getPrevNode(const_cast<reference >(N)); 309 pointer getNextNode(reference N) const { 317 return getNextNode(const_cast<reference >(N));
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | glue_memory_impl.h |
|
/freebsd/sys/contrib/device-tree/Bindings/remoteproc/ |
H A D | qcom,q6v5.txt | 27 Definition: reference to the interrupts that match interrupt-names 37 Definition: reference to the clocks that match clock-names 54 Definition: reference to the list of 3 reset-controllers for the 66 Definition: reference to wcss reserved-memory region. 73 Definition: reference to the regulators to be held on behalf of the 79 Definition: reference to the smem state for requesting the Hexagon to 90 Definition: a phandle reference to a syscon representing TCSR followed 97 Definition: reference to the reserved-memory for the region
|
/freebsd/contrib/libarchive/tar/test/ |
H A D | test_option_group.c | 12 char *reference, *data; in DEFINE_TEST() local 25 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 49 assertEqualMem(data + 116, reference + 116, 8); in DEFINE_TEST() 65 free(reference); in DEFINE_TEST()
|
H A D | test_option_gid_gname.c | 11 char *reference, *data; in DEFINE_TEST() local 24 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 48 assertEqualMem(data + 116, reference + 116, 8); in DEFINE_TEST() 51 free(reference); in DEFINE_TEST()
|
H A D | test_option_owner.c | 12 char *reference, *data; in DEFINE_TEST() local 25 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 49 assertEqualMem(data + 108, reference + 108, 8); in DEFINE_TEST() 65 free(reference); in DEFINE_TEST()
|
H A D | test_option_uid_uname.c | 11 char *reference, *data; in DEFINE_TEST() local 24 reference = slurpfile(&s, "archive1"); in DEFINE_TEST() 61 assertEqualMem(data + 108, reference + 108, 8); in DEFINE_TEST() 65 free(reference); in DEFINE_TEST()
|
/freebsd/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/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/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/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/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/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 93 - Magnetometers (compasses) have their world frame of reference relative to the 95 respect to the local earth geomagnetic reference frame where (y) is in the [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
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/sys/contrib/device-tree/Bindings/sound/ |
H A D | qcom,wcd9335.txt | 61 Definition: Should contain a reference to the 1.8V buck supply 66 Definition: Should contain a reference to the 1.8V SIDO buck supply 71 Definition: Should contain a reference to the 1.8V rx supply 76 Definition: Should contain a reference to the 1.8V tx supply 81 Definition: Should contain a reference to the vbat supply 86 Definition: Should contain a reference to the micbias supply 91 Definition: Should contain a reference to the 1.8V io supply
|