HomeSort by relevance Sort by last modified time
    Searched refs:tas (Results 1 - 11 of 11) sorted by null

  /external/grpc-grpc/test/core/iomgr/
time_averaged_stats_test.cc 30 grpc_time_averaged_stats tas; local
31 grpc_time_averaged_stats_init(&tas, 1000, 0, 0.0);
32 EXPECT_DOUBLE_EQ(1000, tas.aggregate_weighted_avg);
33 EXPECT_DOUBLE_EQ(0, tas.aggregate_total_weight);
36 grpc_time_averaged_stats_update_average(&tas);
37 EXPECT_DOUBLE_EQ(1000, tas.aggregate_weighted_avg);
38 EXPECT_DOUBLE_EQ(0, tas.aggregate_total_weight);
41 grpc_time_averaged_stats_add_sample(&tas, 2000);
42 grpc_time_averaged_stats_update_average(&tas);
43 EXPECT_DOUBLE_EQ(2000, tas.aggregate_weighted_avg)
48 grpc_time_averaged_stats tas; local
64 grpc_time_averaged_stats tas; local
81 grpc_time_averaged_stats tas; local
94 grpc_time_averaged_stats tas; local
115 grpc_time_averaged_stats tas; local
135 grpc_time_averaged_stats tas; local
151 grpc_time_averaged_stats tas; local
    [all...]
  /external/tensorflow/tensorflow/python/ops/
map_fn.py 242 def compute(i, tas):
247 tas: the flat TensorArray accumulator list
250 (i + 1, tas): the updated counter + updated TensorArrays
260 tas = [ta.write(i, value) for (ta, value) in zip(tas, flat_fn_values)]
261 return (i + 1, tas)
functional_ops.py 436 def compute(i, a_flat, tas):
442 tas: the output accumulator TensorArray(s), flattened.
445 [i + 1, a_flat, tas]: the updated counter + new accumulator values +
458 tas = [ta.write(i, value) for (ta, value) in zip(tas, flat_a_out)]
463 return (next_i, flat_a_out, tas)
    [all...]
  /external/tensorflow/tensorflow/python/ops/ragged/
ragged_map_ops.py 239 # Create a flat list of TAs.
257 def compute(i, tas):
262 tas: the flat TensorArray accumulator list
265 (i + 1, tas): the updated counter + updated TensorArrays
293 # Write to TAs.
294 tas = [ta.write(i, value) for (ta, value) in zip(tas, flat_fn_tensors)]
296 return (i + 1, tas)
  /external/u-boot/arch/microblaze/include/asm/
system.h 132 #define tas(ptr) (xchg ((ptr), 1)) macro
  /external/python/cpython3/Lib/test/
test_pkg.py 258 import t7 as tas
259 self.assertEqual(fixdir(dir(tas)),
  /external/u-boot/arch/mips/include/asm/
system.h 242 #define tas(ptr) (xchg((ptr),1)) macro
  /external/u-boot/arch/sh/include/asm/
system.h 85 static inline unsigned long tas(volatile int *m) function
89 __asm__ __volatile__ ("tas.b @%1\n\t"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pkg.py 251 import t7 as tas
252 self.assertEqual(fixdir(dir(tas)),
  /external/python/cpython2/Lib/test/
test_pkg.py 251 import t7 as tas
252 self.assertEqual(fixdir(dir(tas)),
  /external/selinux/libsepol/cil/src/
cil_reset_ast.c 192 static void cil_reset_typeattributeset(struct cil_typeattributeset *tas)
194 cil_list_destroy(&tas->datum_expr, CIL_FALSE);

Completed in 297 milliseconds