/freebsd/contrib/processor-trace/libipt/test/src/ |
H A D | ptunit-section-file.c | 102 uint16_t mcount; in pt_section_map_success() local 108 mcount = section->mcount + 1; in pt_section_map_success() 109 if (!mcount) { in pt_section_map_success() 114 section->mcount = mcount; in pt_section_map_success() 133 uint16_t mcount; in pt_section_map() local 145 mcount = section->mcount; in pt_section_map() 146 if (mcount) in pt_section_map()
|
H A D | ptunit-msec_cache.c | 68 uint16_t ucount, mcount; in pt_section_map() local 77 mcount = section->mcount + 1; in pt_section_map() 78 if (!mcount) in pt_section_map() 81 section->mcount = mcount; in pt_section_map() 87 uint16_t ucount, mcount; in pt_section_unmap() local 96 mcount = section->mcount; in pt_section_unmap() 97 if (!mcount) in pt_section_unmap() 100 section->mcount = mcount - 1; in pt_section_unmap() 259 ptu_uint_eq(tfix->section.mcount, 0); in invalidate() 313 ptu_uint_eq(tfix->section.mcount, 0); in fill_nomap() [all …]
|
H A D | ptunit-image_section_cache.c | 62 int mcount; member 370 int errcode, mcount; in pt_section_map_share() local 379 mcount = ++section->mcount; in pt_section_map_share() 385 if (mcount <= 0) in pt_section_map_share() 393 int errcode, mcount; in pt_section_unmap() local 403 mcount = --section->mcount; in pt_section_unmap() 409 if (mcount < 0) in pt_section_unmap() 489 *size = section->mcount ? section->size + section->bcsize : 0ull; in pt_section_memsize() 614 ptu_int_eq(cfix->section[idx]->mcount, 0); in cfix_fini()
|
H A D | ptunit-image.c | 281 uint16_t mcount; in ifix_unmap() local 286 mcount = section->mcount; in ifix_unmap() 287 if (!mcount) in ifix_unmap() 293 mcount = --section->mcount; in ifix_unmap() 294 if (!mcount) in ifix_unmap() 338 uint16_t mcount; in pt_section_map() local 343 mcount = section->mcount++; in pt_section_map() 344 if (mcount) in pt_section_map() 474 ptu_int_eq(section.mcount, 0); in fini() 2184 ptu_int_eq(ifix->section[sec].mcount, 0); in ifix_fini()
|
/freebsd/contrib/processor-trace/libipt/src/ |
H A D | pt_section.c | 204 uint16_t ucount, mcount; in pt_section_put() local 214 mcount = section->mcount; in pt_section_put() 225 if (!ucount || mcount) in pt_section_put() 398 if (section->mcount) in pt_section_memsize_locked() 454 if (!section->mcount) in pt_section_alloc_bcache() 564 uint16_t mcount; in pt_section_map_share() local 574 mcount = section->mcount; in pt_section_map_share() 575 if (!mcount) { in pt_section_map_share() 580 mcount += 1; in pt_section_map_share() 581 if (!mcount) { in pt_section_map_share() [all …]
|
/freebsd/lib/libc/gmon/ |
H A D | Makefile.inc | 4 SRCS+= gmon.c mcount.c 13 mcount.po: mcount.o 14 cp mcount.o mcount.po
|
/freebsd/contrib/processor-trace/libipt/src/posix/ |
H A D | pt_section_posix.c | 164 uint16_t mcount; in pt_sec_posix_map_success() local 170 mcount = section->mcount + 1; in pt_sec_posix_map_success() 171 if (!mcount) { in pt_sec_posix_map_success() 176 section->mcount = mcount; in pt_sec_posix_map_success() 211 if (section->mcount) in pt_section_map()
|
/freebsd/contrib/processor-trace/libipt/src/windows/ |
H A D | pt_section_windows.c | 197 uint16_t mcount; in pt_sec_windows_map_success() local 203 mcount = section->mcount + 1; in pt_sec_windows_map_success() 204 if (!mcount) { in pt_sec_windows_map_success() 209 section->mcount = mcount; in pt_sec_windows_map_success() 245 if (section->mcount) in pt_section_map()
|
/freebsd/sys/riscv/include/ |
H A D | profile.h | 44 #define _MCOUNT_DECL void mcount 64 void mcount(uintfptr_t frompc, uintfptr_t selfpc); 70 #define _MCOUNT_DECL void mcount
|
/freebsd/contrib/less/ |
H A D | pattern.c | 369 int mcount = pcre_exec(pattern, NULL, line, line_len, in match_pattern1() 371 matched = (mcount > 0); in match_pattern1() 373 if (ecount > mcount) ecount = mcount; in match_pattern1() 392 int mcount = pcre2_match(pattern, (PCRE2_SPTR)line, line_len, in match_pattern1() 394 matched = (mcount > 0); in match_pattern1() 400 if (ecount > mcount) ecount = mcount; in match_pattern1() 367 int mcount = pcre_exec(pattern, NULL, line, line_len, match_pattern1() local 390 int mcount = pcre2_match(pattern, (PCRE2_SPTR)line, line_len, match_pattern1() local
|
/freebsd/sys/i386/include/ |
H A D | profile.h | 45 mcount() \ 84 void mcount(void) __asm(".mcount");
|
H A D | asm.h | 83 call PIC_PLT(HIDENAME(mcount)); \ 93 call PIC_PLT(HIDENAME(mcount)); \
|
/freebsd/sys/amd64/include/ |
H A D | profile.h | 83 mcount() \ 114 void mcount(void) __asm(".mcount");
|
H A D | asm.h | 73 call PIC_PLT(HIDENAME(mcount)); \ 83 call PIC_PLT(HIDENAME(mcount)); \
|
/freebsd/sys/arm/include/ |
H A D | profile.h | 45 #define _MCOUNT_DECL void mcount 115 void mcount(uintfptr_t frompc, uintfptr_t selfpc);
|
/freebsd/contrib/ncurses/progs/ |
H A D | capconvert | 169 mcount=`find "$HOME" -name "*terminfo.src" | wc -l` 170 case $mcount in
|
/freebsd/crypto/openssl/crypto/ |
H A D | mem.c | 85 void CRYPTO_get_alloc_counts(int *mcount, int *rcount, int *fcount) in CRYPTO_get_alloc_counts() argument 87 if (mcount != NULL) in CRYPTO_get_alloc_counts() 88 *mcount = LOAD(malloc_count); in CRYPTO_get_alloc_counts()
|
/freebsd/usr.bin/mail/ |
H A D | quit.c | 65 int mcount, p, modify, autohold, anystat, holdbit, nohold; in quit() local 194 mcount = c; in quit() 278 if (mcount == 1) in quit() 281 printf("Saved %d messages in mbox\n", mcount); in quit()
|
/freebsd/usr.bin/grep/ |
H A D | util.c | 275 if (mflag && mcount <= 0) { in procmatches() 296 mcount -= 1; in procmatches() 297 if (mcount <= 0) in procmatches() 359 mcount = mlimit; in procfile() 390 if (mflag && mcount <= 0) { in procfile()
|
H A D | grep.c | 96 long long mcount; /* count for -m */ variable 503 mlimit = mcount = strtoll(optarg, &ep, 10); 504 if (((errno == ERANGE) && (mcount == LLONG_MAX)) || 505 ((errno == EINVAL) && (mcount == 0)))
|
/freebsd/sys/arm64/include/ |
H A D | profile.h | 88 mcount(uintfptr_t frompc)
|
/freebsd/lib/libc/aarch64/ |
H A D | Symbol.map | 7 .mcount;
|
/freebsd/lib/libc/i386/ |
H A D | Symbol.map | 7 .mcount;
|
/freebsd/lib/libc/amd64/ |
H A D | Symbol.map | 7 .mcount;
|
/freebsd/sys/net80211/ |
H A D | ieee80211_freebsd.h | 157 #define _IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument 162 (ifq)->ifq_len += (mcount); \ 164 #define IF_PREPEND_LIST(ifq, mhead, mtail, mcount) do { \ argument 166 _IF_PREPEND_LIST(ifq, mhead, mtail, mcount); \
|