HomeSort by: relevance | last modified time | path
    Searched defs:computed (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/
floatditf_test.c 13 DD computed; local
18 computed.ld = __floatditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
floatunditf_test.c 13 DD computed; local
18 computed.ld = __floatunditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
qsub_test.c 118 long double computed = __gcc_qsub(a.ld, b.ld); local
120 DD c = { .ld = computed };
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ppc/
floatditf_test.c 13 DD computed; local
18 computed.ld = __floatditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
floatunditf_test.c 13 DD computed; local
18 computed.ld = __floatunditf(tests[i].input);
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
24 printf("\tComputed %La = ( %a , %a )\n", computed.ld, computed.hi, computed.lo);
qsub_test.c 118 long double computed = __gcc_qsub(a.ld, b.ld); local
120 DD c = { .ld = computed };
  /src/external/bsd/jemalloc/dist/test/unit/
hash.c 67 uint32_t computed, expected; local
118 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) |
134 expect_u32_eq(computed, expected,
136 hash_variant_string(variant), expected, computed);
  /src/external/bsd/jemalloc.old/dist/test/unit/
hash.c 67 uint32_t computed, expected; local
118 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) |
134 assert_u32_eq(computed, expected,
136 hash_variant_string(variant), expected, computed);
  /src/external/bsd/kyua-cli/dist/cli/
common_test.cpp 101 const optional< fs::path > computed = cli::get_home(); local
102 ATF_REQUIRE(computed);
103 ATF_REQUIRE_EQ(home, computed.get());
  /src/external/gpl3/gdb/dist/gdb/
tracepoint.h 290 const std::vector<std::string> &computed () function in class:collection_list
308 /* A set of computed expressions. */
value.h 175 /* Create a computed lvalue, with type TYPE, function pointers
717 } computed; member in union:value::__anon18348
1431 /* An internalvar can be dynamically computed by supplying a vector of
regcache.c 41 Computed once when the architecture is created. */
739 value *computed = gdbarch_pseudo_register_read_value local
743 if (computed->entirely_available ())
744 copy (computed->contents_raw (), dst);
2044 them can be computed from saved raw registers, but some
  /src/external/gpl3/gdb.old/dist/gdb/
tracepoint.h 291 const std::vector<std::string> &computed () function in class:collection_list
309 /* A set of computed expressions. */
value.h 175 /* Create a computed lvalue, with type TYPE, function pointers
717 } computed; member in union:value::__anon21089
1431 /* An internalvar can be dynamically computed by supplying a vector of
regcache.c 41 Computed once when the architecture is created. */
739 value *computed = gdbarch_pseudo_register_read_value local
743 if (computed->entirely_available ())
744 copy (computed->contents_raw (), dst);
2050 them can be computed from saved raw registers, but some
  /src/external/gpl3/gcc/dist/gcc/config/rl78/
rl78.cc 107 /* If set, the rest of the fields have been computed. */
108 int computed;
765 cfun->machine->computed = 1;
4100 /* The destination is computed, its origin is itself. */
106 int computed; variable
  /src/external/gpl3/gcc/dist/gcc/
tree-object-size.cc 86 /* Bitmaps what object sizes have been computed already. */
87 static bitmap computed[OST_END]; variable
534 if (bitmap_bit_p (computed[object_size_type],
1073 for which size is being computed. */
1145 if (computed[object_size_type] == NULL)
1178 if (!bitmap_bit_p (computed[object_size_type], SSA_NAME_VERSION (ptr)))
1204 /* First pass: walk UD chains, compute object sizes that can be computed.
1208 The dynamic case has the additional use case where the computed
1223 increased or all object sizes are computed. */
1279 bitmap_set_bit (computed[object_size_type], i)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rl78/
rl78.cc 107 /* If set, the rest of the fields have been computed. */
108 int computed;
765 cfun->machine->computed = 1;
4100 /* The destination is computed, its origin is itself. */
106 int computed; variable
  /src/external/gpl3/gcc.old/dist/gcc/
tree-object-size.cc 86 /* Bitmaps what object sizes have been computed already. */
87 static bitmap computed[OST_END]; variable
541 if (bitmap_bit_p (computed[object_size_type],
979 for which size is being computed. */
1051 if (computed[object_size_type] == NULL)
1084 if (!bitmap_bit_p (computed[object_size_type], SSA_NAME_VERSION (ptr)))
1113 can be computed. osi.reexamine bitmap at the end will
1130 increased or all object sizes are computed. */
1186 bitmap_set_bit (computed[object_size_type], i);
1613 if (bitmap_bit_p (computed[object_size_type], varno)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-main.c 2637 /* Computed expressions. */
2639 ui_out_emit_list list_emitter (uiout, "computed-expressions");
2641 const std::vector<std::string> &computed = clist->computed ();
2642 for (size_t i = 0; i < computed.size (); i++)
2644 const std::string &str = computed[i];
2640 const std::vector<std::string> &computed = clist->computed (); local
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-main.c 2643 /* Computed expressions. */
2645 ui_out_emit_list list_emitter (uiout, "computed-expressions");
2647 const std::vector<std::string> &computed = clist->computed ();
2648 for (size_t i = 0; i < computed.size (); i++)
2650 const std::string &str = computed[i];
2646 const std::vector<std::string> &computed = clist->computed (); local
  /src/external/gpl3/binutils/dist/bfd/
coffcode.h 3463 unsigned int computed;
3484 computed = coff_compute_checksum (abfd, &pelength);
3486 checksum = computed + pelength;
3462 unsigned int computed; local
  /src/external/gpl3/binutils.old/dist/bfd/
coffcode.h 3456 unsigned int computed;
3477 computed = coff_compute_checksum (abfd, &pelength);
3479 checksum = computed + pelength;
3455 unsigned int computed; local
  /src/external/gpl3/gdb/dist/bfd/
coffcode.h 3465 unsigned int computed;
3486 computed = coff_compute_checksum (abfd, &pelength);
3488 checksum = computed + pelength;
3464 unsigned int computed; local
  /src/external/gpl3/gdb.old/dist/bfd/
coffcode.h 3465 unsigned int computed;
3486 computed = coff_compute_checksum (abfd, &pelength);
3488 checksum = computed + pelength;
3464 unsigned int computed; local

Completed in 72 milliseconds

1 2