Home
last modified time | relevance | path

Searched refs:new_slice (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/
Dfeature_provider.cc93 for (int new_slice = slices_to_keep; new_slice < kFeatureSliceCount; in PopulateFeatureData() local
94 ++new_slice) { in PopulateFeatureData()
95 const int new_step = (current_step - kFeatureSliceCount + 1) + new_slice; in PopulateFeatureData()
109 int8_t* new_slice_data = feature_data_ + (new_slice * kFeatureSliceSize); in PopulateFeatureData()
/external/flatbuffers/include/flatbuffers/
Dgrpc.h130 grpc_slice new_slice = grpc_slice_malloc(new_size); in reallocate_downward() local
131 uint8_t *new_p = GRPC_SLICE_START_PTR(new_slice); in reallocate_downward()
134 slice_ = new_slice; in reallocate_downward()
/external/fonttools/Lib/fontTools/colorLib/
Dbuilder.py497 new_slice = ot.Paint()
498 new_slice.Format = int(ot.PaintFormat.PaintColrLayers)
499 new_slice.NumLayers = ubound - lbound
500 new_slice.FirstLayerIndex = reuse_lbound
501 layers = layers[:lbound] + [new_slice] + layers[ubound:]
/external/autotest/site_utils/
Dlab_inventory.py710 new_slice = lab_duts[start : end]
711 new_score = _score_repair_set(model_buffer_counts, new_slice)
713 lab_slice = new_slice
/external/tensorflow/tensorflow/compiler/xla/service/
Dalgebraic_simplifier.cc4078 HloInstruction* new_slice = in TryToReorderSliceAndReshape() local
4084 simplifier_->UpdateLayout(new_slice->mutable_shape()); in TryToReorderSliceAndReshape()
4086 slice, HloInstruction::CreateReshape(slice->shape(), new_slice))); in TryToReorderSliceAndReshape()
4123 HloInstruction* new_slice = computation_->AddInstruction( in TryToReorderSliceAndReverse() local
4126 simplifier_->UpdateLayout(new_slice->mutable_shape()); in TryToReorderSliceAndReverse()
4128 slice, HloInstruction::CreateReverse(new_slice->shape(), new_slice, in TryToReorderSliceAndReverse()
4192 TF_ASSIGN_OR_RETURN(HloInstruction * new_slice, in HandleSlice()
4195 *(new_slice->mutable_shape()) = slice->shape(); in HandleSlice()
4196 return ReplaceInstruction(slice, new_slice); in HandleSlice()
4268 auto new_slice = computation->AddInstruction(HloInstruction::CreateSlice( in HandleSlice() local
[all …]
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_impl.py5137 new_slice = array_ops.slice(
5140 iou = _bbox_overlap(new_slice, box_slice)