HomeSort by relevance Sort by last modified time
    Searched defs:users (Results 1 - 25 of 44) sorted by null

1 2

  /external/toybox/toys/other/
lsmod.c 27 *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);
uptime.c 17 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/tensorflow/tensorflow/compiler/xla/service/
while_loop_constant_sinking.cc 33 std::vector<HloInstruction*> users; local
34 users.reserve(old_instr->user_count());
35 absl::c_copy(old_instr->users(), std::back_inserter(users));
37 for (auto* user : users) {
multi_output_fusion.cc 64 for (auto user : operand->users()) {
159 for (auto use : fusion->users()) {
231 // Check if the users of multioutput fusion is not a get-tuple-element.
233 // the users are get-tuple-element.
238 for (auto user : instr->users()) {
328 auto users = ret->users(); local
bfloat16_normalization_test.cc 333 auto users = sort->to_apply()->parameter_instruction(1)->users(); local
334 for (auto user : users) {
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 78 GemmParallelInfo() : sync(-1), users(0), lhs_start(0), lhs_length(0) {}
81 std::atomic<int> users; member in struct:Eigen::internal::GemmParallelInfo
  /cts/hostsidetests/classloaders/useslibrary/src/android/classloaders/cts/
Utils.java 117 * Prepare and return two users relevant for testing.
125 * Prepare and return multiple users relevant for testing.
150 int[] users = new int[] { primary }; local
153 users = Arrays.copyOf(users, users.length + 1);
154 users[users.length - 1] = user;
157 return users;
  /external/autotest/frontend/client/src/autotest/afe/
HostTableDecorator.java 53 JSONArray users = staticData.getData("users").isArray(); local
55 for (int i = 0; i < users.size(); i++) {
56 JSONObject user = users.get(i).isObject();
  /external/deqp-deps/SPIRV-Tools/source/opt/
local_single_store_elim_pass.cpp 126 std::vector<Instruction*> users; local
127 FindUses(var_inst, &users);
129 Instruction* store_inst = FindSingleStoreAndCheckUses(var_inst, users);
135 return RewriteLoads(store_inst, users);
139 Instruction* var_inst, const std::vector<Instruction*>& users) const {
148 for (Instruction* user : users) {
187 const Instruction* var_inst, std::vector<Instruction*>* users) const {
189 def_use_mgr->ForEachUser(var_inst, [users, this](Instruction* user) {
190 users->push_back(user);
192 FindUses(user, users);
    [all...]
ssa_rewrite_pass.h 72 std::vector<uint32_t>& users() { return users_; } function in class:spvtools::opt::SSARewriter::PhiCandidate
73 const std::vector<uint32_t>& users() const { return users_; } function in class:spvtools::opt::SSARewriter::PhiCandidate
118 // List of all users for this Phi instruction. Each element is the result ID
148 // Replaces all the users of Phi candidate |phi_cand| to be users of
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
local_single_store_elim_pass.cpp 126 std::vector<Instruction*> users; local
127 FindUses(var_inst, &users);
129 Instruction* store_inst = FindSingleStoreAndCheckUses(var_inst, users);
135 return RewriteLoads(store_inst, users);
139 Instruction* var_inst, const std::vector<Instruction*>& users) const {
148 for (Instruction* user : users) {
187 const Instruction* var_inst, std::vector<Instruction*>* users) const {
189 def_use_mgr->ForEachUser(var_inst, [users, this](Instruction* user) {
190 users->push_back(user);
192 FindUses(user, users);
    [all...]
ssa_rewrite_pass.h 72 std::vector<uint32_t>& users() { return users_; } function in class:spvtools::opt::SSARewriter::PhiCandidate
73 const std::vector<uint32_t>& users() const { return users_; } function in class:spvtools::opt::SSARewriter::PhiCandidate
118 // List of all users for this Phi instruction. Each element is the result ID
148 // Replaces all the users of Phi candidate |phi_cand| to be users of
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
Utils.java 135 * Prepare and return two users relevant for testing.
143 * Prepare and return multiple users relevant for testing.
169 int[] users = new int[] { primary }; local
172 users = Arrays.copyOf(users, users.length + 1);
173 users[users.length - 1] = user;
176 return users;
InstantAppUserTest.java 69 // This test only runs when we have at least 2 users to work with
70 final int[] users = Utils.prepareMultipleUsers(getDevice(), 2); local
71 mSupportsMultiUser = (users.length == 2);
77 mSecondaryUserId = users[1];
  /external/iproute2/ip/
ipmaddr.c 68 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
VPlanValue.h 44 SmallVector<VPUser *, 1> Users;
89 unsigned getNumUsers() const { return Users.size(); }
90 void addUser(VPUser &User) { Users.push_back(&User); }
97 user_iterator user_begin() { return Users.begin(); }
98 const_user_iterator user_begin() const { return Users.begin(); }
99 user_iterator user_end() { return Users.end(); }
100 const_user_iterator user_end() const { return Users.end(); }
101 user_range users() { return user_range(user_begin(), user_end()); } function in class:llvm::VPValue
102 const_user_range users() const { function in class:llvm::VPValue
113 /// edges from VPValue's users to their defs
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
fusion_merger.cc 36 // Traverses users of tuple shape, adding leaf instructions to 'instructions'.
40 for (auto tuple_user : instruction->users()) {
52 // In the special case where all users of 'param' (or all users of a leaf
65 // shape. For each 'instruction' in 'instructions', if all users of
71 instruction->users(), [](const HloInstruction* instruction) {
75 // All users are slice: accumulate bytes of all user slice instructions.
76 for (auto& user : instruction->users()) {
80 // Some users are not slice: accumulate full size of 'instruction'.
100 // that would be read by all users
270 std::vector<HloInstruction*> users = fusion->users(); local
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/opt/
def_use_test.cpp 111 // Creates a mapping of all definitions to their users (except OpConstant).
932 // Only checking users
1710 auto users = def_use_mgr->id_to_users(); local
    [all...]
  /external/selinux/python/sepolicy/sepolicy/
manpage.py 69 users = None variable
74 global users
76 if users and users_range:
77 return users, users_range
79 users = []
91 users.append(u.replace("_u", ""))
92 users.sort()
93 return users, users_range
678 SELinux %(domainname)s policy is very flexible allowing users to setup their %(domainname)s processes in as secure a method as possible.
711 SELinux %(domainname)s policy is very flexible allowing users to setup their %(domainname)s processes in as secure a method as possible
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/
def_use_test.cpp 111 // Creates a mapping of all definitions to their users (except OpConstant).
932 // Only checking users
1710 auto users = def_use_mgr->id_to_users(); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 33 unsigned int users; member in struct:wpa_bss_anqp
  /external/grpc-grpc/test/core/end2end/fixtures/
http_proxy_fixture.cc 62 gpr_ref_init(&users, 1);
71 gpr_refcount users; member in struct:grpc_end2end_http_proxy
145 gpr_unref(&conn->proxy->users);
474 gpr_ref(&proxy->users);
517 gpr_ref(&proxy->users);
526 } while (!gpr_unref(&proxy->users));
571 gpr_unref(&proxy->users); // Signal proxy thread to shutdown.
  /external/tensorflow/tensorflow/compiler/xla/tools/
interactive_graphviz.cc 286 std::vector<const HloComputation*> users; local
289 users.push_back(c);
292 std::cout << " Used by " << users.size() << " computation"
293 << (users.size() != 1 ? "s" : "") << (!users.empty() ? ":" : ".");
294 for (const HloComputation* c : users) {
329 std::cout << " Users:" << std::endl;
330 for (HloInstruction* user : instr->users()) {
384 for (auto* user : n->users()) {
  /external/llvm/include/llvm/IR/
Value.h 274 /// 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/
prot_hsymlinks.c 25 * Users who own sticky world-writable directory can't follow symlinks
26 * 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)
    [all...]

Completed in 1511 milliseconds

1 2