Searched refs:modify_value (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/llvm/test/Transforms/Inline/ |
D | module-inlining.ll | 1 ; modify_value will be inlined into main. With just the inliner pass, at most 12 define void @modify_value({i32, float}* %v) { 20 call void @modify_value({i32, float}* %my_val)
|
/external/protobuf/python/google/protobuf/internal/ |
D | encoder.py | 155 def _ModifiedSizer(compute_value_size, modify_value): argument 166 result += compute_value_size(modify_value(element)) 173 result += compute_value_size(modify_value(element)) 178 return tag_size + compute_value_size(modify_value(value)) 470 def _ModifiedEncoder(wire_type, encode_value, compute_value_size, modify_value): argument 482 size += compute_value_size(modify_value(element)) 485 encode_value(write, modify_value(element), deterministic) 492 encode_value(write, modify_value(element), deterministic) 498 return encode_value(write, modify_value(value), deterministic)
|
D | decoder.py | 262 def _ModifiedDecoder(wire_type, decode_value, modify_value): argument 272 return (modify_value(result), new_pos)
|