| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/glmark2/files/ |
| H A D | 0003-GLVisualConfig-By-default-don-t-care-about-the-stenc.patch | 47 score += score_component(blue, target.blue, 4); 48 score += score_component(alpha, target.alpha, 4); 49 score += score_component(depth, target.depth, 1); 50 - score += score_component(stencil, target.stencil, 0); 51 + score += score_component(stencil, target.stencil, 1); 52 score += score_component(buffer, target.buffer, 1); 53 score += score_component(samples, target.samples, -1); 56 * score for all components ranges from [0,MAXIMUM_COMPONENT_SCORE). 65 - score = scale < 0 ? MAXIMUM_COMPONENT_SCORE - diff : diff; 66 + score = (scale < 0 || target < 0) ? [all …]
|
| /openbmc/qemu/contrib/plugins/ |
| H A D | howvec.c | 170 qemu_plugin_scoreboard_free(rec->count.score); in free_record() 231 qemu_plugin_scoreboard_free(class_tables[i].table[j].count.score); in plugin_exit() 246 struct qemu_plugin_scoreboard *score = udata; in vcpu_insn_exec_before() local 247 qemu_plugin_u64_add(qemu_plugin_scoreboard_u64(score), cpu_index, 1); in vcpu_insn_exec_before() 282 return class->count.score; in find_counter() 296 struct qemu_plugin_scoreboard *score = in find_counter() local 298 icount->count = qemu_plugin_scoreboard_u64(score); in find_counter() 304 return icount->count.score; in find_counter() 343 struct qemu_plugin_scoreboard *score = in qemu_plugin_install() local 345 class_tables[i].table[j].count = qemu_plugin_scoreboard_u64(score); in qemu_plugin_install()
|
| /openbmc/qemu/plugins/ |
| H A D | core.c | 245 struct qemu_plugin_scoreboard *score; in plugin_grow_scoreboards__locked() local 246 QLIST_FOREACH(score, &plugin.scoreboards, entry) { in plugin_grow_scoreboards__locked() 247 g_array_set_size(score->data, scoreboard_size); in plugin_grow_scoreboards__locked() 596 char *ptr = cb->entry.score->data->data; in exec_inline_op() 598 cb->entry.score->data); in exec_inline_op() 764 struct qemu_plugin_scoreboard *score = in plugin_scoreboard_new() local 766 score->data = g_array_new(FALSE, TRUE, element_size); in plugin_scoreboard_new() 767 g_array_set_size(score->data, plugin.scoreboard_alloc_size); in plugin_scoreboard_new() 770 QLIST_INSERT_HEAD(&plugin.scoreboards, score, entry); in plugin_scoreboard_new() 773 return score; in plugin_scoreboard_new() [all …]
|
| H A D | api.c | 599 void qemu_plugin_scoreboard_free(struct qemu_plugin_scoreboard *score) in qemu_plugin_scoreboard_free() argument 601 plugin_scoreboard_free(score); in qemu_plugin_scoreboard_free() 604 void *qemu_plugin_scoreboard_find(struct qemu_plugin_scoreboard *score, in qemu_plugin_scoreboard_find() argument 609 char *base_ptr = score->data->data; in qemu_plugin_scoreboard_find() 610 return base_ptr + vcpu_index * g_array_get_element_size(score->data); in qemu_plugin_scoreboard_find() 616 char *ptr = qemu_plugin_scoreboard_find(entry.score, vcpu_index); in plugin_u64_address()
|
| H A D | plugin.h | 120 void plugin_scoreboard_free(struct qemu_plugin_scoreboard *score);
|
| /openbmc/qemu/include/qemu/ |
| H A D | qemu-plugin.h | 254 struct qemu_plugin_scoreboard *score; member 1098 void qemu_plugin_scoreboard_free(struct qemu_plugin_scoreboard *score); 1109 void *qemu_plugin_scoreboard_find(struct qemu_plugin_scoreboard *score, 1113 #define qemu_plugin_scoreboard_u64(score) \ argument 1114 (qemu_plugin_u64) {score, 0} 1115 #define qemu_plugin_scoreboard_u64_in_struct(score, type, member) \ argument 1116 (qemu_plugin_u64) {score, offsetof(type, member)}
|
| /openbmc/u-boot/drivers/core/ |
| H A D | of_access.c | 196 int index = 0, score = 0; in of_device_is_compatible() local 204 score = INT_MAX/2 - (index << 2); in of_device_is_compatible() 208 if (!score) in of_device_is_compatible() 216 score += 2; in of_device_is_compatible() 223 score++; in of_device_is_compatible() 226 return score; in of_device_is_compatible()
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | pylintrc | 38 # Activate the evaluation score. 39 score=no
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs-128/ |
| H A D | riscv.patch | 30 | score \
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/nmap/files/ |
| H A D | 0002-Fix-building-with-libc.patch | 52 /* The payload magic may affect the score only between 56 * increasing the score a lot and cause problems for
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/nmap/nmap-7.92/ |
| H A D | 0004-Fix-building-with-libc.patch | 52 /* The payload magic may affect the score only between 56 * increasing the score a lot and cause problems for
|
| /openbmc/qemu/tests/tcg/plugins/ |
| H A D | insn.c | 215 qemu_plugin_scoreboard_free(insn_count.score); in plugin_exit()
|
| /openbmc/docs/security/ |
| H A D | obmc-security-response-team-guidelines.md | 126 The CVSS score for these vulnerabilities is "...", with temporal score
|
| /openbmc/qemu/accel/tcg/ |
| H A D | plugin-gen.c | 140 GArray *arr = entry.score->data; in gen_plugin_u64_ptr()
|
| /openbmc/qemu/ |
| H A D | block.c | 889 int score_max = 0, score; in find_hdev_driver() local 895 score = d->bdrv_probe_device(filename); in find_hdev_driver() 896 if (score > score_max) { in find_hdev_driver() 897 score_max = score; in find_hdev_driver() 997 int score_max = 0, score; in bdrv_probe_all() local 1003 score = d->bdrv_probe(buf, buf_size, filename); in bdrv_probe_all() 1004 if (score > score_max) { in bdrv_probe_all() 1005 score_max = score; in bdrv_probe_all()
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-core/packagegroups/ |
| H A D | packagegroup-meta-python.bb | 384 python3-rouge-score \
|
| /openbmc/rest-dbus/resources/ |
| H A D | jstree.min.js | 5 …score:0};if(!d.fuzzy)return{isMatch:!1,score:1};var c,f,l=a.length,m=g,n=a.indexOf(b,e),o,p,q=h+l,…
|
| /openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/rpidistro-vlc/files/ |
| H A D | 0004-mmal_20.patch | 12481 double best_score, score;
|
| /openbmc/ |
| D | opengrok1.0.log | [all...] |
| D | opengrok2.0.log | [all...] |