/external/boringssl/src/util/bot/ |
D | extract.py | 138 new_prefix, rest = entry.path.split('/', 1) 142 prefix = new_prefix 143 if prefix != new_prefix: 144 raise ValueError((prefix, new_prefix))
|
/external/vulkan-validation-layers/scripts/ |
D | layer_chassis_dispatch_generator.py | 1565 new_prefix = 'local_%s' % member.name 1567 decls += '%ssafe_%s *%s = NULL;\n' % (indent, member.type, new_prefix) 1569 new_prefix = '%s%s' % (prefix, member.name) 1573 … pre_code += '%s %s = new safe_%s[%s];\n' % (indent, new_prefix, member.type, member.len) 1577 …pre_code += '%s %s[%s].initialize(&%s[%s]);\n' % (indent, new_prefix, index, member.name, index) 1579 …ppedExtensionStructs(layer_data, %s[%s].pNext);\n' % (indent, new_prefix, index, new_prefix, index) 1580 local_prefix = '%s[%s].' % (new_prefix, index) 1596 new_prefix = 'local_%s->' % member.name 1599 new_prefix = '%s%s->' % (prefix, member.name) 1606 …_decl, tmp_pre, tmp_post) = self.uniquify_members(struct_info, indent, new_prefix, array_index, cr… [all …]
|
D | object_tracker_generator.py | 786 new_prefix = '%s%s' % (prefix, member.name) 791 local_prefix = '%s[%s].' % (new_prefix, index) 802 new_prefix = '%s%s->' % (prefix, member.name) 807 …tmp_pre = self.validate_objects(struct_info, indent, new_prefix, array_index, disp_name, member.ty…
|
/external/protobuf/src/google/protobuf/compiler/ |
D | importer.cc | 322 const string& new_prefix, in ApplyMapping() argument 335 result->assign(new_prefix); in ApplyMapping() 343 *result = new_prefix; in ApplyMapping() 365 result->assign(new_prefix); in ApplyMapping()
|
/external/elfutils/src/ |
D | size.c | 345 char new_prefix[prefix_len + 1 + fname_len]; in handle_ar() local 346 char *cp = new_prefix; in handle_ar() 366 handle_elf (subelf, new_prefix, arhdr->ar_name); in handle_ar() 368 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name); in handle_ar()
|
D | objdump.c | 292 char new_prefix[prefix_len + fname_len + 2]; in handle_ar() local 299 char *cp = new_prefix; in handle_ar() 321 result |= handle_elf (subelf, new_prefix, arhdr->ar_name, in handle_ar() 324 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar() 329 new_prefix, arhdr->ar_name, new_suffix); in handle_ar()
|
D | nm.c | 415 char new_prefix[prefix_len + fname_len + 2]; in handle_ar() local 422 char *cp = new_prefix; in handle_ar() 483 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar() 486 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar() 491 new_prefix, arhdr->ar_name, new_suffix); in handle_ar()
|
D | strip.c | 2704 char new_prefix[prefix_len + 1 + fname_len]; in handle_ar() local 2705 char *cp = new_prefix; in handle_ar() 2726 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, 0, NULL); in handle_ar() 2728 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, NULL); in handle_ar()
|
D | elflint.c | 251 char new_prefix[prefix_len + 1 + fname_len]; in process_file() local 253 char *cp = new_prefix; in process_file() 277 process_file (fd, subelf, new_prefix, new_suffix, in process_file()
|
/external/swiftshader/third_party/subzero/bloat/ |
D | bloat.py | 224 new_prefix = ['[ungrouped]'] 235 new_prefix += [group] 237 parts = new_prefix + parts
|
/external/python/cpython3/Doc/library/ |
D | ipaddress.rst | 517 .. method:: subnets(prefixlen_diff=1, new_prefix=None) 521 length should be increased by. *new_prefix* is the desired new 523 only one of *prefixlen_diff* and *new_prefix* must be set. Returns an 531 … >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=26)) #doctest: +NORMALIZE_WHITESPACE 534 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=23)) 539 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=25)) 542 .. method:: supernet(prefixlen_diff=1, new_prefix=None) 546 should be decreased by. *new_prefix* is the desired new prefix of 548 of *prefixlen_diff* and *new_prefix* must be set. Returns a single 555 >>> ip_network('192.0.2.0/24').supernet(new_prefix=20) [all …]
|
/external/python/cpython3/Lib/ |
D | ipaddress.py | 869 def subnets(self, prefixlen_diff=1, new_prefix=None): argument 899 if new_prefix is not None: 900 if new_prefix < self._prefixlen: 904 prefixlen_diff = new_prefix - self._prefixlen 922 def supernet(self, prefixlen_diff=1, new_prefix=None): argument 946 if new_prefix is not None: 947 if new_prefix > self._prefixlen: 951 prefixlen_diff = self._prefixlen - new_prefix
|
/external/python/cpython3/Lib/test/ |
D | test_ipaddress.py | 1111 prefixlen_diff=2, new_prefix=1) 1113 new_prefix=25) 1115 self.ipv4_network.supernet(new_prefix=22)) 1118 prefixlen_diff=2, new_prefix=1) 1120 new_prefix=65) 1122 self.ipv6_network.supernet(new_prefix=62)) 1157 sorted(self.ipv4_network.subnets(new_prefix=27))) 1159 self.ipv4_network.subnets(new_prefix=23)) 1162 new_prefix=27)) 1164 sorted(self.ipv6_network.subnets(new_prefix=68))) [all …]
|
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | bigquery_table_accessor.cc | 298 const auto new_prefix = strings::StrCat(current_column_name, "."); in ExtractColumnType() local 299 TF_RETURN_IF_ERROR(ExtractColumnType((*columns_it)["fields"], new_prefix, in ExtractColumnType()
|
/external/googletest/googletest/scripts/ |
D | pump.py | 745 new_prefix = prefix + 4*' ' # Prefix of a continuation line 757 prefix = new_prefix 764 prefix = new_prefix
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | pump.py | 745 new_prefix = prefix + 4*' ' # Prefix of a continuation line 757 prefix = new_prefix 764 prefix = new_prefix
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 361 char *new_prefix; in _ctypes_alloc_format_string_with_shape() local 370 new_prefix = PyMem_Malloc(prefix_len); in _ctypes_alloc_format_string_with_shape() 371 if (new_prefix == NULL) { in _ctypes_alloc_format_string_with_shape() 375 new_prefix[0] = '\0'; in _ctypes_alloc_format_string_with_shape() 377 strcpy(new_prefix, prefix); in _ctypes_alloc_format_string_with_shape() 380 strcat(new_prefix, "("); in _ctypes_alloc_format_string_with_shape() 387 strcat(new_prefix, buf); in _ctypes_alloc_format_string_with_shape() 390 result = _ctypes_alloc_format_string(new_prefix, suffix); in _ctypes_alloc_format_string_with_shape() 391 PyMem_Free(new_prefix); in _ctypes_alloc_format_string_with_shape()
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 406 char *new_prefix; in _ctypes_alloc_format_string_with_shape() local 415 new_prefix = PyMem_Malloc(prefix_len); in _ctypes_alloc_format_string_with_shape() 416 if (new_prefix == NULL) in _ctypes_alloc_format_string_with_shape() 418 new_prefix[0] = '\0'; in _ctypes_alloc_format_string_with_shape() 420 strcpy(new_prefix, prefix); in _ctypes_alloc_format_string_with_shape() 423 strcat(new_prefix, "("); in _ctypes_alloc_format_string_with_shape() 430 strcat(new_prefix, buf); in _ctypes_alloc_format_string_with_shape() 433 result = _ctypes_alloc_format_string(new_prefix, suffix); in _ctypes_alloc_format_string_with_shape() 434 PyMem_Free(new_prefix); in _ctypes_alloc_format_string_with_shape()
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 5229 unibrow::uchar new_prefix = atom->data().at(0); in RationalizeConsecutiveAtoms() local 5230 if (new_prefix != common_prefix) { in RationalizeConsecutiveAtoms() 5234 new_prefix = Canonical(canonicalize, new_prefix); in RationalizeConsecutiveAtoms() 5236 if (new_prefix != common_prefix) break; in RationalizeConsecutiveAtoms()
|