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

1 2 3

  /frameworks/rs/rsov/compiler/spirit/
file_utils.h 29 std::ifstream ifs; local
30 std::filebuf *fb = ifs.rdbuf();
38 ifs.seekg(0, ifs.end);
39 int length = ifs.tellg();
40 ifs.seekg(0, ifs.beg);
44 ifs.read((char *)ret.data(), length);
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 285 struct i915_fragment_shader *ifs = p->shader; local
294 if (ifs->constant_flags[reg] == I915_CONSTFLAG_USER)
297 if (!(ifs->constant_flags[reg] & (1 << idx)) ||
298 ifs->constants[reg][idx] == c0) {
299 ifs->constants[reg][idx] = c0;
300 ifs->constant_flags[reg] |= 1 << idx;
301 if (reg + 1 > ifs->num_constants)
302 ifs->num_constants = reg + 1;
315 struct i915_fragment_shader *ifs = p->shader; local
331 if (ifs->constant_flags[reg] == 0xf |
354 struct i915_fragment_shader *ifs = p->shader; local
    [all...]
i915_fpc_translate.c 1081 struct i915_fragment_shader *ifs = p->shader; local
1231 struct i915_fragment_shader *ifs = p->shader; local
    [all...]
i915_state.c 594 struct i915_fragment_shader *ifs = CALLOC_STRUCT(i915_fragment_shader); local
595 if (!ifs)
598 ifs->draw_data = draw_create_fragment_shader(i915->draw, templ);
599 ifs->state.tokens = tgsi_dup_tokens(templ->tokens);
601 tgsi_scan_shader(templ->tokens, &ifs->info);
604 i915_translate_fragment_program(i915, ifs);
606 return ifs;
627 struct i915_fragment_shader *ifs = (struct i915_fragment_shader *) shader; local
629 FREE(ifs->decl);
630 ifs->decl = NULL
    [all...]
  /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/skia/src/sksl/
SkSLCFGGenerator.cpp 460 IfStatement& ifs = (IfStatement&) **s; local
461 this->addExpression(cfg, &ifs.fTest, true);
466 this->addStatement(cfg, &ifs.fIfTrue);
468 if (ifs.fIfFalse) {
471 this->addStatement(cfg, &ifs.fIfFalse);
  /external/skqp/src/sksl/
SkSLCFGGenerator.cpp 460 IfStatement& ifs = (IfStatement&) **s; local
461 this->addExpression(cfg, &ifs.fTest, true);
466 this->addStatement(cfg, &ifs.fIfTrue);
468 if (ifs.fIfFalse) {
471 this->addStatement(cfg, &ifs.fIfFalse);
  /art/compiler/optimizing/
dead_code_elimination.cc 154 HIf* ifs = block->GetLastInstruction()->AsIf(); local
165 HInstruction* cond = ifs->InputAt(0);
167 if (throws == ifs->IfTrueSuccessor() && cond->IsEqual()) {
168 not_throws = ifs->IfFalseSuccessor();
169 } else if (throws == ifs->IfFalseSuccessor() && cond->IsNotEqual()) {
170 not_throws = ifs->IfTrueSuccessor();
induction_var_analysis_test.cc 1217 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
1243 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
1269 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
1295 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
1320 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
1345 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); local
    [all...]
induction_var_analysis.cc 124 HIf* ifs = control->AsIf(); local
125 HInstruction* if_expr = ifs->InputAt(0);
127 IfCondition other_cmp = ifs->IfTrueSuccessor() == entry
894 HIf* ifs = control->AsIf(); local
1137 HIf* ifs = loop->GetHeader()->GetLastInstruction()->AsIf(); local
    [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...]
dhcp6.c 3196 struct if_head *ifs; local
    [all...]
  /external/libese/libese-teq1/
teq1_private.h 57 uint8_t ifs; member in struct:Teq1State
77 .ifs = IFSC, \
  /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,
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc_finalize.cpp 251 unsigned ifs, loops; local
252 unsigned elems = get_stack_depth(r, loops, ifs);
262 unsigned ifs, loops; local
263 get_stack_depth(r, loops, ifs);
847 unsigned &ifs, unsigned add) {
854 ifs = 0;
860 ++ifs;
865 stack_elements += (loops * ctx.stack_entry_size) + ifs;
901 unsigned ifs = 0; local
902 unsigned elems = r ? get_stack_depth(r, loops, ifs, add) : add
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 666 ClassType[] ifs local
668 return new ClassSignature(tp, superClass, ifs);
  /external/skia/fuzz/
FuzzCanvas.cpp 783 sk_sp<SkImageFilter> ifs[kMaxCount]; local
787 ifs[i] = make_fuzz_imageFilter(fuzz, depth - 1);
795 return SkMergeImageFilter::Make(ifs, count, useCropRect ? &cropRect : nullptr);
    [all...]
  /external/skqp/fuzz/
FuzzCanvas.cpp 779 sk_sp<SkImageFilter> ifs[kMaxCount]; local
783 ifs[i] = make_fuzz_imageFilter(fuzz, depth - 1);
791 return SkMergeImageFilter::Make(ifs, count, useCropRect ? &cropRect : nullptr);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 339 asdl_seq *ifs; member in struct:_comprehension
521 ifs, PyArena *arena);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ast.c 1122 asdl_seq *ifs; local
1263 asdl_seq *ifs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 339 asdl_seq *ifs; member in struct:_comprehension
521 ifs, PyArena *arena);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ast.c 1122 asdl_seq *ifs; local
1263 asdl_seq *ifs; local
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 365 public void setInterfaces(Class[] ifs) {
366 interfaces = ifs;
1023 Class[] ifs = clazz.getInterfaces(); local
    [all...]
  /external/ppp/pppd/
sys-linux.c 1785 struct ifreq ifs[MAX_IFS]; local
1910 struct ifreq ifs[MAX_IFS]; local
    [all...]

Completed in 1004 milliseconds

1 2 3