Searched refs:new_region (Results 1 – 7 of 7) sorted by relevance
/external/e2fsprogs/e2fsck/ |
D | region.c | 64 struct region_el *r, *new_region, *prev, *next; in region_allocate() local 124 new_region = malloc(sizeof(struct region_el)); in region_allocate() 125 if (!new_region) in region_allocate() 127 new_region->start = start; in region_allocate() 128 new_region->end = start + n; in region_allocate() 129 new_region->next = r; in region_allocate() 130 if (!new_region->next) in region_allocate() 131 region->last = new_region; in region_allocate() 133 prev->next = new_region; in region_allocate() 135 region->allocated = new_region; in region_allocate()
|
/external/llvm-project/lldb/source/Plugins/Process/Utility/ |
D | LinuxProcMaps.cpp | 181 llvm::Expected<MemoryRegionInfo> new_region = in ParseLinuxSMapRegions() local 183 if (new_region) { in ParseLinuxSMapRegions() 184 region = *new_region; in ParseLinuxSMapRegions() 187 callback(new_region.takeError()); in ParseLinuxSMapRegions()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/ |
D | legalize_tf_types.cc | 148 Region &new_region = *state.addRegion(); in matchAndRewrite() local 149 rewriter.inlineRegionBefore(region, new_region, new_region.begin()); in matchAndRewrite() 150 if (failed(rewriter.convertRegionTypes(&new_region, *getTypeConverter()))) in matchAndRewrite()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | resource_op_lifting_cleanup.cc | 103 Region &new_region = std::get<1>(it); in EliminateUnusedResults() local 104 new_region.takeBody(old_region); in EliminateUnusedResults()
|
D | resource_op_lifting.cc | 543 Region& new_region = std::get<1>(it); in ReplaceOpWithNewOp() local 544 new_region.takeBody(old_region); in ReplaceOpWithNewOp()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/ |
D | lower_static_tensor_list.cc | 948 Region &new_region = *std::get<1>(it); in matchAndRewrite() local 960 rewriter.inlineRegionBefore(old_region, new_region, new_region.end()); in matchAndRewrite() 961 rewriter.applySignatureConversion(&new_region, signature_conversion); in matchAndRewrite()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emitter_unnested.cc | 711 mlir::Region* new_region = op_state.addRegion(); in EmitUsingElementalIrEmitter() local 712 region.cloneInto(new_region, mapper); in EmitUsingElementalIrEmitter()
|