Searched defs:users (Results 1 - 25 of 37) sorted by relevance

12

/external/toybox/toys/other/
H A Dlsmod.c27 *refcnt = strtok(NULL, " "), *users = strtok(NULL, " "); local
29 if(users) {
30 int len = strlen(users)-1;
31 if (users[len] == ',' || users[len] == '-') users[len] = 0;
32 xprintf("%-19s %8s %s %s\n", name, size, refcnt, users);
H A Duptime.c17 of users, and the system load averages for the past 1, 5 and 15 minutes.
33 int users = 0; local
74 // Obtain info about logged on users
76 while ((entry = getutxent())) if (entry->ut_type == USER_PROCESS) users++;
79 printf(" %d user%s, ", users, (users!=1) ? "s" : "");
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h76 GemmParallelInfo() : sync(-1), users(0), lhs_start(0), lhs_length(0) {}
79 int volatile users; member in struct:Eigen::internal::GemmParallelInfo
/external/toolchain-utils/cwp/bartlett/
H A Dserver.py7 "/": the main page for the app, left blank so that users cannot access
35 from google.appengine.api import users namespace
129 user = users.get_current_user()
131 webpage.redirect(users.create_login_url(webpage.request.uri))
/external/ltp/testcases/kernel/syscalls/setregid/
H A Dsetregid03.c44 struct group users, sys, root, bin; variable in typeref:struct:group
197 GET_GID(users);
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dfusion_merger.cc33 // Traverses users of tuple shape, adding leaf instructions to 'instructions'.
37 for (auto tuple_user : instruction->users()) {
48 // In the special case where all users of 'param' (or all users of a leaf
61 // shape. For each 'instruction' in 'instructions', if all users of
66 if (std::all_of(instruction->users().begin(), instruction->users().end(),
71 // All users are slice: accumulate bytes of all user slice instructions.
72 for (auto& user : instruction->users()) {
76 // Some users ar
272 std::vector<HloInstruction*> users = fusion->users(); local
[all...]
/external/fio/
H A Ddiskutil.h70 unsigned long users; member in struct:disk_util
79 du->users += val;
85 slave->users += val;
/external/iproute2/ip/
H A Dipmaddr.c68 int users; member in struct:ma_info
100 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st,
153 sscanf(buf, "%08x%d", (__u32 *)&m.addr.data, &m.users);
176 sscanf(buf, "%d%s%s%d", &m.index, m.name, hexa, &m.users);
220 if (list->users != 1)
221 fprintf(fp, " users %d", list->users);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dheap_simulator.cc118 // set of instructions that need to be visited contains all users of all
119 // aliases. The alias itself is not necessary; if it has users, the users
120 // are necessarily scheduled after the alias. And if it has no users, it is
135 const std::vector<HloInstruction*>& users = local
136 alias.instruction()->users();
137 if (!users.empty()) {
141 live_set->insert(users.begin(), users.end());
155 // If the buffer has no users an
[all...]
H A Dtuple_points_to_analysis_test.cc698 // Check number of users of 'fusion_param' aliases at shape index {0}.
717 // Returns all users of 'fusion_paran' at 'tuple_index'.
722 for (auto user : fusion_param->users()) {
734 std::vector<HloInstruction*> users = local
736 CHECK_EQ(1, users.size());
737 return users[0];
740 // Checks that the count of all users of all aliases of 'instruction' at
748 for (auto user : alias.instruction()->users()) {
760 // Tests the points-to set of tuple-shaped fusion parameter 0 and all GTE users.
782 // Tests the points-to set of tuple-shaped fusion parameter 0 and all GTE users
[all...]
H A Dcopy_insertion.cc264 // Copy users before making a deep copy of the parameter as the deep copy
265 // will create new users of the parameter (eg, the GTE instructions of the
267 std::vector<HloInstruction*> param_users = param->users();
1004 std::vector<HloInstruction*> users = instruction->users(); local
1008 for (HloInstruction* user : users) {
H A Dhlo_rematerialization.cc269 ItemList users; local
270 // To identify uses iterate through all HloInstruction users of the
275 for (const HloInstruction* user : buffer_alias.instruction()->users()) {
291 if (std::find(users.begin(), users.end(), user_item) == users.end()) {
292 users.push_back(user_item);
296 return users;
375 ItemList users; member in struct:xla::__anon25647::MemoryUsageTracker::Buffer
377 // The number of users (HloInstruction
397 ItemList users = GetUsers(instruction_list_, logical_buffer, local
459 NewBuffer(Item* defining_instruction, int64 size, ItemList&& users, bool live_out, bool has_indirect_uses) argument
[all...]
H A Dhlo_instruction.h538 // Returns the number of users of this instruction.
541 // Returns the users of this instruction.
542 const std::vector<HloInstruction*>& users() const { return users_; } function in class:xla::HloInstruction
951 // All the users of instruction_to_merge will be redirected to 'this'
974 // be part of the output of fusion instructions. The users of
1313 // of the output of fusion instructions. The users of instruction_to_fuse
1353 // The users of this instruction. Users are HLOs where this instruction is an
/external/wpa_supplicant_8/wpa_supplicant/
H A Dbss.h33 unsigned int users; member in struct:wpa_bss_anqp
/external/selinux/python/sepolicy/sepolicy/
H A Dmanpage.py70 users = None variable
75 global users
77 if users and users_range:
78 return users, users_range
80 users = []
92 users.append(u.replace("_u", ""))
93 users.sort()
94 return users, users_range
679 SELinux %(domainname)s policy is very flexible allowing users to setup their %(domainname)s processes in as secure a method as possible.
712 SELinux %(domainname)s policy is very flexible allowing users t
[all...]
/external/llvm/include/llvm/IR/
H A DValue.h274 /// values or constant users.
360 iterator_range<user_iterator> users() { function
364 iterator_range<const_user_iterator> users() const { function
379 /// \brief Return true if this Value has exactly N users.
382 /// \brief Return true if this value has N users or more.
/external/ltp/testcases/kernel/security/prot_hsymlinks/
H A Dprot_hsymlinks.c26 * inside that directory if their don't own ones. All other users can follow.
30 * Hard links restriction applies only to non-privileged users. Only
99 static struct test_user users[USERS_NUM]; variable in typeref:struct:test_user
206 strcpy(users[ROOT].name, "root");
210 snprintf(users[TEST_USER].name, MAX_USER_NAME, "%s", tmp_user_name);
250 /* get all users files and directories */
251 for (file = 0; file < users[usr].num; ++file) {
252 ufile = &users[usr].file[file];
322 snprintf(cmd, MAX_CMD_LEN, "%s %s", user_cmd, users[TEST_USER].name);
325 user_cmd, users[TEST_USE
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DValue.h283 /// values or constant users.
369 iterator_range<user_iterator> users() { function
373 iterator_range<const_user_iterator> users() const { function
388 /// \brief Return true if this Value has exactly N users.
391 /// \brief Return true if this value has N users or more.
/external/v8/src/heap/
H A Dobject-stats.cc484 Object* users = info->prototype_users(); local
485 if (users->IsWeakFixedArray()) {
486 RecordFixedArrayHelper(map_obj, WeakFixedArray::cast(users),
/external/autotest/frontend/afe/
H A Dmodels.py401 everyone.users.add(self)
1123 SERIALIZATION_LINKS_TO_FOLLOW = set(['users'])
1127 users = dbmodels.ManyToManyField(User, blank=False, variable in class:AclGroup
1208 if not user in self.users.all():
1245 """Adds the current user if the set of users is empty."""
1246 if not self.users.count():
1247 self.users.add(User.current_user())
1256 self.users.add(User.current_user())
/external/selinux/checkpolicy/
H A Dpolicy_parse.y173 opt_default_rules opt_mls te_rbac users opt_constraints
652 users : user_def label
653 | users user_def
/external/selinux/libsemanage/src/
H A Ddirect_api.c1184 dbase_config_t *users = semanage_user_dbase_local(sh); local
1267 if (users->dtable->is_modified(users->dbase)) {
1268 retval = users->dtable->flush(sh, users->dbase);
1335 users->dtable->is_modified(users_base->dbase);
H A Dgenhomedircon.c68 "# use semanage command to manage system users to change" \
410 WARN(s->h_semanage, "Error while fetching users. "
879 /* if there are no users, this function can't do any other work */
1097 // skip users who also have this group as their
1137 /* if there are no users, this function can't do any other work */
1202 genhomedircon_user_entry_t *users; local
1205 users = get_users(s, &errors);
1206 if (!users && errors) {
1210 for (; users; pop_user_entry(&users)) {
[all...]
/external/selinux/libsepol/cil/src/
H A Dcil_policy.c345 ebitmap_for_each_bit(attr->users, unode, i) {
346 if (!ebitmap_get_bit(attr->users, i))
457 ebitmap_for_each_bit(attr->users, unode, i) {
458 if (!ebitmap_get_bit(attr->users, i))
1584 static void cil_users_to_policy(FILE *out, int mls, struct cil_list *users, struct cil_list *all_roles) argument
1592 cil_list_for_each(i1, users) {
/external/kmod/tools/
H A Ddepmod.c805 uint16_t users; /* how many modules depend on this one */ member in struct:mod
854 sym->owner->users++;
1626 uint16_t *users)
1640 if (users[i] <= 0)
1686 uint16_t *users, *roots, *sorted; local
1690 users = malloc(sizeof(uint16_t) * n_mods * 3);
1691 if (users == NULL)
1693 roots = users + n_mods;
1700 /* populate modules users (how many modules uses it) */
1704 users[
1625 depmod_report_cycles(struct depmod *depmod, uint16_t n_mods, uint16_t *users) argument
[all...]

Completed in 873 milliseconds

12