Lines Matching full:of
9 * 1. Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
13 * this list of conditions and the following disclaimer in the documentation
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
38 * The object code form of an Application may incorporate material from a
39 * header file that is part of the Library. You may convey such object code
40 * under terms of your choice, provided that, if the incorporated material
43 * lines in length), you do both of the following: [...]"
50 * This file is part of the GNU C Library.
54 * modify it under the terms of the GNU Lesser General Public
56 * version 2.1 of the License, or (at your option) any later version.
59 * but WITHOUT ANY WARRANTY; without even the implied warranty of
63 * You should have received a copy of the GNU Lesser General Public
69 * This file specifies the format of gmon.out files. It should have
71 * in many different programs. That is, minimize the number of #include's.
73 * A gmon.out file consists of a header (defined by gmon_hdr) followed by
74 * a sequence of records. Each record starts with a one-byte tag
75 * identifying the type of records, followed by records specific data.
97 /* types of records in this file: */
105 uintptr_t low_pc; /* base pc address of sample buffer */
106 uintptr_t high_pc; /* max pc address of sampled buffer */
107 uint32_t hist_size; /* size of sample buffer */
116 int32_t count; /* number of arc traversals */