Home
last modified time | relevance | path

Searched refs:sort_arr (Results 1 – 20 of 20) sorted by relevance

/dports/games/libretro-hatari/hatari-561c07e/src/debug/
H A Dprofilecpu.c376 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowMisses()
383 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowMisses()
436 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowCycles()
443 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowCycles()
495 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowCounts()
501 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowCounts()
525 for (end = sort_arr + active; sort_arr < end; sort_arr++) { in Profile_CpuShowCounts()
1022 sort_arr = calloc(active, sizeof(*sort_arr)); in Profile_CpuStop()
1032 cpu_profile.sort_arr = sort_arr; in Profile_CpuStop()
1036 sort_arr = index_area(&cpu_profile.ram, sort_arr); in Profile_CpuStop()
[all …]
H A Dprofiledsp.c202 sort_arr = dsp_profile.sort_arr; in Profile_DspShowCycles()
203 qsort(sort_arr, active, sizeof(*sort_arr), cmp_dsp_cycles); in Profile_DspShowCycles()
207 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_DspShowCycles()
208 addr = *sort_arr; in Profile_DspShowCycles()
256 sort_arr = dsp_profile.sort_arr; in Profile_DspShowCounts()
257 qsort(sort_arr, active, sizeof(*sort_arr), cmp_dsp_count); in Profile_DspShowCounts()
261 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_DspShowCounts()
281 for (end = sort_arr + active; sort_arr < end; sort_arr++) { in Profile_DspShowCounts()
682 sort_arr = calloc(dsp_profile.ram.active, sizeof(*sort_arr)); in Profile_DspStop()
684 if (!sort_arr) { in Profile_DspStop()
[all …]
/dports/emulators/hatari/hatari-2.2.1/src/debug/
H A Dprofilecpu.c488 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowInstrMisses()
495 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowInstrMisses()
542 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowDataHits()
549 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowDataHits()
606 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowCycles()
613 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowCycles()
665 sort_arr = cpu_profile.sort_arr; in Profile_CpuShowCounts()
671 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_CpuShowCounts()
695 for (end = sort_arr + active; sort_arr < end; sort_arr++) { in Profile_CpuShowCounts()
1300 sort_arr = calloc(active, sizeof(*sort_arr)); in Profile_CpuStop()
[all …]
H A Dprofiledsp.c214 sort_arr = dsp_profile.sort_arr; in Profile_DspShowCycles()
215 qsort(sort_arr, active, sizeof(*sort_arr), cmp_dsp_cycles); in Profile_DspShowCycles()
219 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_DspShowCycles()
220 addr = *sort_arr; in Profile_DspShowCycles()
268 sort_arr = dsp_profile.sort_arr; in Profile_DspShowCounts()
269 qsort(sort_arr, active, sizeof(*sort_arr), cmp_dsp_count); in Profile_DspShowCounts()
273 for (end = sort_arr + show; sort_arr < end; sort_arr++) { in Profile_DspShowCounts()
293 for (end = sort_arr + active; sort_arr < end; sort_arr++) { in Profile_DspShowCounts()
694 sort_arr = calloc(dsp_profile.ram.active, sizeof(*sort_arr)); in Profile_DspStop()
696 if (!sort_arr) { in Profile_DspStop()
[all …]
/dports/security/samhain-server/samhain-4.4.3/src/
H A Dsh_html.c396 } sort_arr; typedef
398 static sort_arr sort_stat[CLT_MAX];
403 const sort_arr * a; in comp_arr()
404 const sort_arr * b; in comp_arr()
413 a = (const sort_arr *) ao; in comp_arr()
414 b = (const sort_arr *) bo; in comp_arr()
456 qsort(&(sort_stat[0]), n, sizeof(sort_arr), comp_arr); in sh_html_print_one()
/dports/security/samhain-client/samhain-4.4.3/src/
H A Dsh_html.c396 } sort_arr; typedef
398 static sort_arr sort_stat[CLT_MAX];
403 const sort_arr * a; in comp_arr()
404 const sort_arr * b; in comp_arr()
413 a = (const sort_arr *) ao; in comp_arr()
414 b = (const sort_arr *) bo; in comp_arr()
456 qsort(&(sort_stat[0]), n, sizeof(sort_arr), comp_arr); in sh_html_print_one()
/dports/security/samhain/samhain-4.4.3/src/
H A Dsh_html.c396 } sort_arr; typedef
398 static sort_arr sort_stat[CLT_MAX];
403 const sort_arr * a; in comp_arr()
404 const sort_arr * b; in comp_arr()
413 a = (const sort_arr *) ao; in comp_arr()
414 b = (const sort_arr *) bo; in comp_arr()
456 qsort(&(sort_stat[0]), n, sizeof(sort_arr), comp_arr); in sh_html_print_one()
/dports/sysutils/sg3_utils/sg3_utils-1.42/src/
H A Dsg_opcodes.c495 unsigned char ** sort_arr = NULL; in list_all_codes() local
532 sort_arr = (unsigned char **)malloc(cd_len * sizeof(unsigned char *)); in list_all_codes()
533 if (NULL == sort_arr) { in list_all_codes()
538 memset(sort_arr, 0, cd_len * sizeof(unsigned char *)); in list_all_codes()
541 sort_arr[j] = ucp; in list_all_codes()
544 qsort(sort_arr, j, sizeof(unsigned char *), in list_all_codes()
548 ucp = op->do_unsorted ? (rsoc_buff + 4 + k) : sort_arr[j]; in list_all_codes()
620 if (sort_arr) in list_all_codes()
621 free(sort_arr); in list_all_codes()
/dports/databases/proftpd-mod_sql_postgres/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/databases/proftpd-mod_sql_odbc/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/databases/proftpd-mod_sql_tds/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/databases/proftpd-mod_sql_sqlite/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/databases/proftpd-mod_sql_mysql/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/net/proftpd-mod_ldap/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/security/proftpd-mod_clamav/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/ftp/proftpd-mod_vroot/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/ftp/proftpd/proftpd-1.3.7c/modules/
H A Dmod_ls.c871 static array_header *sort_arr = NULL; variable
902 if (sort_arr == NULL) { in addfile()
971 if (sort_arr) { in sortfiles()
977 struct sort_filename *elts = sort_arr->elts; in sortfiles()
979 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
985 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
999 qsort(sort_arr->elts, sort_arr->nelts, sizeof(struct sort_filename), in sortfiles()
1005 for (i = 0; i < sort_arr->nelts; i++) { in sortfiles()
1015 sort_arr = NULL; in sortfiles()
1034 sort_arr = NULL; in outputfiles()
[all …]
/dports/biology/subread/subread-2.0.2-source/src/longread-one/
H A DLRMchro-event.c167 void * sort_arr[2]; in LRMevents_reorder() local
168 sort_arr [0] = context; in LRMevents_reorder()
169 sort_arr [1] = order_index; in LRMevents_reorder()
171 …LRMmerge_sort(sort_arr, context -> event_number, LRMscanning_events_compare, LRMscanning_events_ex… in LRMevents_reorder()
/dports/biology/subread/subread-2.0.2-source/src/
H A Dcore-indel.c894 void * sort_arr[2]; in sort_junction_entry_table() local
895 sort_arr[0] = indel_context; in sort_junction_entry_table()
896 sort_arr[1] = records; in sort_junction_entry_table()
900 …merge_sort(sort_arr, current_record_number, scanning_events_compare, scanning_events_exchange, sca… in sort_junction_entry_table()
1051 void * sort_arr[3]; in finalise_indel_and_junction_thread() local
1052 sort_arr[0] = records; in finalise_indel_and_junction_thread()
1053 sort_arr[1] = indel_context; in finalise_indel_and_junction_thread()
1054 sort_arr[2] = thread_contexts; in finalise_indel_and_junction_thread()
1057 merge_sort(sort_arr, conc_rec_items, conc_sort_compare, conc_sort_exchange, conc_sort_merge); in finalise_indel_and_junction_thread()
1069 if(xk1 < conc_rec_items) compret = conc_sort_compare(sort_arr, xk1-1, xk1); in finalise_indel_and_junction_thread()
/dports/math/py-pandas/pandas-1.2.5/pandas/_libs/
H A Dgroupby.pyx780 ndarray[int64_t] counts, non_na_counts, sort_arr
819 sort_arr = np.lexsort(order).astype(np.int64, copy=False)
834 val = values[sort_arr[idx]]
843 next_val = values[sort_arr[idx + 1]]