/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/ |
D | rjsmin.py | 224 groups = match.groups() 225 if groups[0]: 226 return groups[0] 227 elif groups[1]: 228 return groups[1] 229 elif groups[2]: 230 if groups[3]: 231 return groups[2] + '\n' 232 return groups[2] 233 elif groups[5]: [all …]
|
/external/XNNPACK/test/ |
D | channel-shuffle-nc.cc | 18 .groups(2) in TEST() 29 .groups(3) in TEST() 40 .groups(4) in TEST() 48 for (size_t groups = 5; groups < 12; groups += 3) { in TEST() local 52 .groups(groups) in TEST() 64 .groups(2) in TEST() 75 .groups(3) in TEST() 86 .groups(4) in TEST() 94 for (size_t groups = 5; groups < 12; groups += 3) { in TEST() local 98 .groups(groups) in TEST() [all …]
|
D | convolution-nhwc.cc | 94 .groups(2) in TEST() 105 .groups(2) in TEST() 117 .groups(2) in TEST() 129 .groups(2) in TEST() 141 .groups(2) in TEST() 154 .groups(2) in TEST() 166 .groups(2) in TEST() 189 .groups(2) in TEST() 212 .groups(2) in TEST() 337 .groups(2) in TEST() [all …]
|
D | convolution-nchw.cc | 524 .groups(19) in TEST() 535 .groups(19) in TEST() 548 .groups(19) in TEST() 561 .groups(19) in TEST() 574 .groups(channels) in TEST() 585 .groups(19) in TEST() 596 .groups(19) in TEST() 608 .groups(19) in TEST() 622 .groups(19) in TEST() 634 .groups(19) in TEST() [all …]
|
D | convolution-operator-tester.h | 169 inline ConvolutionOperatorTester& groups(uint32_t groups) { in groups() function 170 assert(groups >= 1); in groups() 171 this->groups_ = groups; in groups() 175 inline uint32_t groups() const { in groups() function 322 return group_input_channels() * groups(); in input_channel_stride() 324 assert(this->input_channel_stride_ >= group_input_channels() * groups()); in input_channel_stride() 337 return group_output_channels() * groups(); in output_channel_stride() 339 assert(this->output_channel_stride_ >= group_output_channels() * groups()); in output_channel_stride() 517 …batch_size() * ((input_height() * input_width() - 1) * input_channel_stride() + groups() * group_i… in TestNHWCxQS8() 518 …std::vector<int8_t> kernel(groups() * group_output_channels() * kernel_height() * kernel_width() *… in TestNHWCxQS8() [all …]
|
/external/iproute2/ip/ |
D | ipmonitor.c | 152 unsigned int groups = 0; in do_ipmonitor() local 164 groups |= nl_mgrp(RTNLGRP_LINK); in do_ipmonitor() 165 groups |= nl_mgrp(RTNLGRP_IPV4_IFADDR); in do_ipmonitor() 166 groups |= nl_mgrp(RTNLGRP_IPV6_IFADDR); in do_ipmonitor() 167 groups |= nl_mgrp(RTNLGRP_IPV4_ROUTE); in do_ipmonitor() 168 groups |= nl_mgrp(RTNLGRP_IPV6_ROUTE); in do_ipmonitor() 169 groups |= nl_mgrp(RTNLGRP_MPLS_ROUTE); in do_ipmonitor() 170 groups |= nl_mgrp(RTNLGRP_IPV4_MROUTE); in do_ipmonitor() 171 groups |= nl_mgrp(RTNLGRP_IPV6_MROUTE); in do_ipmonitor() 172 groups |= nl_mgrp(RTNLGRP_IPV6_PREFIX); in do_ipmonitor() [all …]
|
/external/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/ |
D | pm_api_pinctrl.c | 24 uint16_t (*groups)[]; member 32 uint16_t (*groups)[]; member 39 .groups = &((uint16_t []) { 65 .groups = &((uint16_t []) { 92 .groups = &((uint16_t []) { 100 .groups = &((uint16_t []) { 108 .groups = &((uint16_t []) { 116 .groups = &((uint16_t []) { 124 .groups = &((uint16_t []) { 134 .groups = &((uint16_t []) { [all …]
|
/external/boringssl/src/util/ |
D | convert_comments.go | 81 func addLine(groups *[]lineGroup, line string, column int) { 82 if len(*groups) == 0 || (*groups)[len(*groups)-1].column != column { 83 *groups = append(*groups, lineGroup{column, nil}) 85 (*groups)[len(*groups)-1].lines = append((*groups)[len(*groups)-1].lines, line) 104 var groups []lineGroup 110 addLine(&groups, line, -1) 133 addLine(&groups, l, -1) 144 addLine(&groups, line, -1) 161 addLine(&groups, l, column) 169 addLine(&groups, l, -1) [all …]
|
/external/deqp/scripts/ |
D | testset.py | 118 groups = [] 122 groups.append(group) 123 return groups 126 groups = [] 131 groups.append(group) 142 return groups 145 groups = [] 154 groups.append(group) 161 return groups 176 def getNumCasesInGroups (groups): argument [all …]
|
/external/vboot_reference/cgpt/ |
D | cgpt_prioritize.c | 104 group_list_t *groups; in CgptPrioritize() local 144 groups = NewGroupList(num_kernels); in CgptPrioritize() 155 AddToGroup(groups, priority, i); // we'll move them all later in CgptPrioritize() 157 AddToGroup(groups, 99, i); // move only this one in CgptPrioritize() 159 AddToGroup(groups, priority, i); // just remember in CgptPrioritize() 165 ChangeGroup(groups, params->orig_priority, 99); in CgptPrioritize() 170 SortGroups(groups); in CgptPrioritize() 174 i = groups->num_groups; in CgptPrioritize() 175 if (groups->group[i-1].priority == 0) in CgptPrioritize() 176 groups->num_groups--; in CgptPrioritize() [all …]
|
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 57 private List groups; field in UserAccount 107 return groups; in getGroups() 110 public void setGroups(List groups) { in setGroups() argument 111 this.groups = groups; in setGroups() 164 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 213 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 234 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 255 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/XNNPACK/src/operators/ |
D | channel-shuffle-nc.c | 23 size_t groups, in create_channel_shuffle_nc() argument 42 if (groups <= 1) { in create_channel_shuffle_nc() 45 xnn_operator_type_to_string(operator_type), groups); in create_channel_shuffle_nc() 56 const size_t channels = groups * group_channels; in create_channel_shuffle_nc() 61 xnn_operator_type_to_string(operator_type), input_stride, groups, group_channels); in create_channel_shuffle_nc() 69 xnn_operator_type_to_string(operator_type), output_stride, groups, group_channels); in create_channel_shuffle_nc() 83 channel_shuffle_op->groups = groups; in create_channel_shuffle_nc() 102 size_t groups, in xnn_create_channel_shuffle_nc_x8() argument 110 groups, in xnn_create_channel_shuffle_nc_x8() 120 size_t groups, in xnn_create_channel_shuffle_nc_x32() argument [all …]
|
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/ |
D | UserAccount.java | 66 private List groups; field in UserAccount 118 return groups; in getGroups() 121 public void setGroups(List groups) { in setGroups() argument 122 this.groups = groups; in setGroups() 173 return (groups == null || groups.isEmpty()) ? DEFAULT_GROUP : (String) groups.get(0); in getPrimaryGroup() 222 if (groups != null && groups.contains(entry.getGroup())) { in canRead() 243 if (groups != null && groups.contains(entry.getGroup())) { in canWrite() 264 if (groups != null && groups.contains(entry.getGroup())) { in canExecute()
|
/external/ltp/testcases/kernel/syscalls/getgroups/ |
D | getgroups03.c | 52 static GID_T groups[NGROUPS]; variable 91 static int readgroups(GID_T groups[NGROUPS]) in readgroups() 104 groups[ngrps++] = grp->gr_gid; in readgroups() 120 if (groups[i] == g) in readgroups() 124 groups[ngrps++] = g; in readgroups() 142 ngroups = readgroups(groups); in setup() 149 if (SETGROUPS(cleanup, ngroups, groups) == -1) in setup() 176 if (groups_list[i] != groups[j]) { in verify_groups() 196 if (groups[i] != groups_list[j]) { in verify_groups() 203 if (groups[i] != egid) { in verify_groups() [all …]
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | converters.py | 9 def convertUFO1OrUFO2KerningToUFO3Kerning(kerning, groups, glyphSet=()): argument 11 firstReferencedGroups, secondReferencedGroups = findKnownKerningGroups(groups) 14 if first in groups and first not in glyphSet: 18 if second in groups and second not in glyphSet: 25 existingGroupNames = list(groups.keys()) + list(firstRenamedGroups.keys()) 37 existingGroupNames = list(groups.keys()) + list(secondRenamedGroups.keys()) 60 group = list(groups[oldName]) 61 groups[newName] = group 63 return newKerning, groups, dict(side1=firstRenamedGroups, side2=secondRenamedGroups) 65 def findKnownKerningGroups(groups): argument [all …]
|