HomeSort by relevance Sort by last modified time
    Searched refs:ifs (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 286 struct i915_fragment_shader *ifs = p->shader; local
295 if (ifs->constant_flags[reg] == I915_CONSTFLAG_USER)
298 if (!(ifs->constant_flags[reg] & (1 << idx)) ||
299 ifs->constants[reg][idx] == c0) {
300 ifs->constants[reg][idx] = c0;
301 ifs->constant_flags[reg] |= 1 << idx;
302 if (reg + 1 > ifs->num_constants)
303 ifs->num_constants = reg + 1;
316 struct i915_fragment_shader *ifs = p->shader; local
332 if (ifs->constant_flags[reg] == 0xf |
355 struct i915_fragment_shader *ifs = p->shader; local
    [all...]
i915_fpc_translate.c 1116 struct i915_fragment_shader *ifs = p->shader; local
1266 struct i915_fragment_shader *ifs = p->shader; local
    [all...]
i915_state.c 569 struct i915_fragment_shader *ifs = CALLOC_STRUCT(i915_fragment_shader); local
570 if (!ifs)
573 ifs->draw_data = draw_create_fragment_shader(i915->draw, templ);
574 ifs->state.tokens = tgsi_dup_tokens(templ->tokens);
576 tgsi_scan_shader(templ->tokens, &ifs->info);
579 i915_translate_fragment_program(i915, ifs);
581 return ifs;
615 struct i915_fragment_shader *ifs = (struct i915_fragment_shader *) shader; local
617 if (ifs->decl) {
618 FREE(ifs->decl)
    [all...]
  /system/core/toolbox/
iftop.c 100 static int get_interfaces(struct if_stats *ifs)
143 ret = sscanf(p, "%" STR(IFNAMSIZ) "s", ifs->name);
153 c = strchr(ifs->name, ':');
160 "%*u %*u\n", &ifs->rx_bytes, &ifs->rx_packets,
161 &ifs->rx_errors, &ifs->rx_dropped, &ifs->tx_bytes,
162 &ifs->tx_packets, &ifs->tx_errors, &ifs->tx_dropped)
228 struct if_stats ifs[2][MAX_IF]; local
    [all...]
  /external/autotest/client/deps/lansim/src/py/
tuntap.py 112 ifs = fcntl.ioctl(fd, pyiftun.TUNSETIFF,
114 ifs_name, ifs_mode = struct.unpack(IFNAMSIZ_FMT + "H", ifs)
129 ifs = fcntl.ioctl(self._sock, pyiftun.SIOCGIFMTU,
131 ifr_name, ifr_mtu = unpack_struct_ifreq(ifs, 'ifr_mtu')
136 ifs = fcntl.ioctl(self._sock, pyiftun.SIOCGIFFLAGS,
138 ifr_name, ifr_flags = unpack_struct_ifreq(ifs, 'ifr_flags')
143 ifs = fcntl.ioctl(self._sock, pyiftun.SIOCSIFFLAGS,
145 ifr_name, ifr_flags = unpack_struct_ifreq(ifs, 'ifr_flags')
154 ifs = fcntl.ioctl(self._sock, pyiftun.SIOCGIFADDR,
157 ifs, 'ifr_addr'
    [all...]
  /libcore/ojluni/src/main/native/
NetworkInterface.c 110 static jobject createNetworkInterface(JNIEnv *env, netif *ifs);
115 static netif *addif(JNIEnv *env, int sock, struct ifaddrs *ifa, netif *ifs);
116 static void freeif(netif *ifs);
169 netif *ifs, *curr; local
174 ifs = enumInterfaces(env);
175 if (ifs == NULL) {
184 curr = ifs;
199 freeif(ifs);
213 netif *ifs, *curr; local
220 ifs = enumInterfaces(env)
253 netif *ifs, *curr; local
336 netif *ifs, *curr; local
675 netif *ifs = NULL; local
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/viz/
transformations.cpp 37 ifstream ifs("bunny.ply");
41 getline(ifs, str);
46 ifs >> data[i].x >> data[i].y >> data[i].z >> dummy1 >> dummy2;
  /external/libedit/src/
tokenizer.c 66 #define IFS STR("\t \n")
75 Char *ifs; /* In field separator */ local
110 FUN(tok,init)(const Char *ifs)
116 tok->ifs = tok_strdup(ifs ? ifs : IFS);
117 if (tok->ifs == NULL) {
125 tok_free(tok->ifs);
133 tok_free(tok->ifs);
    [all...]
  /external/ceres-solver/examples/
nist.cc 147 bool GetAndSplitLine(std::ifstream& ifs, std::vector<std::string>* pieces) {
150 ifs.getline(buf, 256);
155 void SkipLines(std::ifstream& ifs, int num_lines) {
158 ifs.getline(buf, 256);
165 std::ifstream ifs(filename.c_str(), std::ifstream::in);
168 SkipLines(ifs, 24);
169 GetAndSplitLine(ifs, &pieces);
172 GetAndSplitLine(ifs, &pieces);
175 GetAndSplitLine(ifs, &pieces);
178 SkipLines(ifs, 4)
    [all...]
  /external/dhcpcd-6.8.2/
if.c 191 static void if_learnaddrs1(struct dhcpcd_ctx *ctx, struct if_head *ifs,
208 if ((ifp = if_find(ifs, ifa->ifa_name)) == NULL)
223 ipv4_handleifa(ctx, RTM_NEWADDR, ifs, ifa->ifa_name,
241 ipv6_handleifa(ctx, RTM_NEWADDR, ifs,
258 struct if_head *ifs; local
297 ifs = malloc(sizeof(*ifs));
298 if (ifs == NULL)
300 TAILQ_INIT(ifs);
315 TAILQ_FOREACH(ifp, ifs, next)
    [all...]
dhcpcd.c 944 struct if_head *ifs; local
972 ifs = if_discover(ctx, -1, UNCONST(argv));
973 if (ifs == NULL) {
977 TAILQ_FOREACH_SAFE(ifp, ifs, next, ifn) {
992 TAILQ_REMOVE(ifs, ifp, next);
1003 while ((ifp = TAILQ_FIRST(ifs))) {
1004 TAILQ_REMOVE(ifs, ifp, next);
1007 free(ifs);
1125 struct if_head *ifs; local
1128 ifs = if_discover(ctx, argc - oi, argv + oi)
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
policygen.py 305 def __init__(self, ifs, perm_maps=None):
306 self.ifs = ifs
307 self.hack_check_ifs(ifs)
311 def hack_check_ifs(self, ifs):
316 for x in ifs.interfaces.values():
344 for ifcall, ifs in ifcalls:
361 self.matcher.search_ifs(self.ifs, av, ans)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
policygen.py 305 def __init__(self, ifs, perm_maps=None):
306 self.ifs = ifs
307 self.hack_check_ifs(ifs)
311 def hack_check_ifs(self, ifs):
316 for x in ifs.interfaces.values():
344 for ifcall, ifs in ifcalls:
361 self.matcher.search_ifs(self.ifs, av, ans)
  /external/javassist/src/main/javassist/
CtClassType.java 308 String[] ifs = file.getInterfaces();
309 int num = ifs.length;
311 if (ifs[i].equals(cname))
318 if (classPool.get(ifs[i]).subtypeOf(clazz))
704 String[] ifs = getClassFile2().getInterfaces(); local
705 int num = ifs.length;
708 ifc[i] = classPool.get(ifs[i]);
715 String[] ifs; local
717 ifs = new String[0];
720 ifs = new String[num]
876 CtClass[] ifs = cc.getInterfaces(); local
918 CtClass[] ifs = getInterfaces(); local
1095 CtClass[] ifs = cc.getInterfaces(); local
1159 CtClass[] ifs = cc.getInterfaces(); local
1652 CtClass[] ifs = getInterfaces(); local
    [all...]
  /art/compiler/optimizing/
induction_var_analysis_test.cc 620 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
621 ifs->ReplaceInput(graph_->GetIntConstant(127), 1);
639 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
640 ifs->ReplaceInput(graph_->GetIntConstant(128), 1);
657 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
658 ifs->ReplaceInput(graph_->GetIntConstant(32767), 1);
677 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
678 ifs->ReplaceInput(graph_->GetIntConstant(32768), 1);
695 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
696 ifs->ReplaceInput(graph_->GetIntConstant(65535), 1)
713 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
    [all...]
  /external/selinux/policycoreutils/audit2allow/
audit2allow 195 ifs = interfaces.InterfaceSet()
196 ifs.from_file(fd)
213 return (ifs, perm_maps)
309 ifs, perm_maps = self.__load_interface_info()
310 g.set_gen_refpol(ifs, perm_maps)
audit2why 195 ifs = interfaces.InterfaceSet()
196 ifs.from_file(fd)
213 return (ifs, perm_maps)
308 ifs, perm_maps = self.__load_interface_info()
309 g.set_gen_refpol(ifs, perm_maps)
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 497 wifstream ifs("test.txt"); // a file containing 4098 wchars
499 ifs.imbue( locale(locale(), new my_codecvt) );
500 ifs.get();
501 ifs.seekg(0);
502 ifs.imbue( locale() );
503 ifs.ignore(4096);
504 int ch = ifs.get();
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 497 wifstream ifs("test.txt"); // a file containing 4098 wchars
499 ifs.imbue( locale(locale(), new my_codecvt) );
500 ifs.get();
501 ifs.seekg(0);
502 ifs.imbue( locale() );
503 ifs.ignore(4096);
504 int ch = ifs.get();
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 155 CtClass[] ifs = clazz.getInterfaces(); local
156 int size = ifs.length;
158 Method r = lookupMethod(ifs[i], methodName,
  /ndk/sources/host-tools/make-3.81/
job.c 2929 char *shell, *ifs; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 603 def __init__(self, assign, iter, ifs, lineno=None):
606 self.ifs = ifs
614 children.extend(flatten(self.ifs))
621 nodelist.extend(flatten_nodes(self.ifs))
625 return "GenExprFor(%s, %s, %s)" % (repr(self.assign), repr(self.iter), repr(self.ifs))
856 def __init__(self, assign, list, ifs, lineno=None):
859 self.ifs = ifs
866 children.extend(flatten(self.ifs))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 603 def __init__(self, assign, iter, ifs, lineno=None):
606 self.ifs = ifs
614 children.extend(flatten(self.ifs))
621 nodelist.extend(flatten_nodes(self.ifs))
625 return "GenExprFor(%s, %s, %s)" % (repr(self.assign), repr(self.iter), repr(self.ifs))
856 def __init__(self, assign, list, ifs, lineno=None):
859 self.ifs = ifs
866 children.extend(flatten(self.ifs))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 603 def __init__(self, assign, iter, ifs, lineno=None):
606 self.ifs = ifs
614 children.extend(flatten(self.ifs))
621 nodelist.extend(flatten_nodes(self.ifs))
625 return "GenExprFor(%s, %s, %s)" % (repr(self.assign), repr(self.iter), repr(self.ifs))
856 def __init__(self, assign, list, ifs, lineno=None):
859 self.ifs = ifs
866 children.extend(flatten(self.ifs))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 603 def __init__(self, assign, iter, ifs, lineno=None):
606 self.ifs = ifs
614 children.extend(flatten(self.ifs))
621 nodelist.extend(flatten_nodes(self.ifs))
625 return "GenExprFor(%s, %s, %s)" % (repr(self.assign), repr(self.iter), repr(self.ifs))
856 def __init__(self, assign, list, ifs, lineno=None):
859 self.ifs = ifs
866 children.extend(flatten(self.ifs))
    [all...]

Completed in 626 milliseconds

1 2 3