Searched refs:index_of (Results 1 – 11 of 11) sorted by relevance
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler.py | 71 def index_of(self, value_str): member in StringTable 118 def index_of(self, file_path, function_name, function_start_line): member in Functions 137 function.name = self._string_table.index_of(function_name) 138 function.filename = self._string_table.index_of(file_path) 165 def index_of( member in Locations 195 line.function_id = self._functions.index_of( 241 label.key = self._string_table.index_of('node_name') 242 label.str = self._string_table.index_of(node_name) 244 label.key = self._string_table.index_of('op_type') 245 label.str = self._string_table.index_of(datum.op_type) [all …]
|
/external/fec/ |
D | init_rs.h | 40 rs->index_of = (data_t *)malloc(sizeof(data_t)*(rs->nn+1)); 41 if(rs->index_of == NULL){ 49 rs->index_of[0] = A0; /* log(zero) = -inf */ 53 rs->index_of[sr] = i; 63 free(rs->index_of); 73 free(rs->index_of); 94 rs->genpoly[j] = rs->genpoly[j-1] ^ rs->alpha_to[modnn(rs,rs->index_of[rs->genpoly[j]] + root)]; 99 rs->genpoly[0] = rs->alpha_to[modnn(rs,rs->index_of[rs->genpoly[0]] + root)]; 103 rs->genpoly[i] = rs->index_of[rs->genpoly[i]];
|
D | init_rs_char.c | 15 free(rs->index_of); in free_rs_char()
|
D | init_rs_int.c | 15 free(rs->index_of); in free_rs_int()
|
D | init_rs.c | 19 free(rs->index_of); in free_rs()
|
D | rs-common.h | 11 data_t *index_of; /* Antilog lookup table */ member
|
D | int.h | 13 #define INDEX_OF (rs->index_of)
|
D | char.h | 13 #define INDEX_OF (rs->index_of)
|
D | gen_ccsds.c | 28 printf("%3d,",rs->index_of[i]); in main()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | call_graph_test.cc | 387 auto index_of = [&visited](const HloComputation* comp) { in TEST_F() local 392 EXPECT_EQ(4, index_of(entry_computation)); in TEST_F() 393 EXPECT_LT(index_of(cond_computation), index_of(a_computation)); in TEST_F() 394 EXPECT_LT(index_of(c_computation), index_of(b_computation)); in TEST_F() 395 EXPECT_LT(index_of(b_computation), index_of(a_computation)); in TEST_F()
|
/external/u-boot/drivers/mtd/nand/ |
D | atmel_nand.c | 182 int16_t __iomem *index_of = host->pmecc_index_of; in pmecc_substitute() local 210 tmp = readw(index_of + si[j]); in pmecc_substitute() 240 int16_t __iomem *index_of = host->pmecc_index_of; in pmecc_get_sigma() local 344 a = readw(index_of + dmu[i]); in pmecc_get_sigma() 345 b = readw(index_of + dmu[ro]); in pmecc_get_sigma() 346 c = readw(index_of + smu[ro * num + k]); in pmecc_get_sigma() 370 a = readw(index_of + in pmecc_get_sigma() 373 c = readw(index_of + b); in pmecc_get_sigma() 757 int16_t *index_of, int16_t *alpha_to) in build_gf_tables() argument 769 index_of[x] = i; in build_gf_tables() [all …]
|