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

1 2 3 4

  /external/android-clat/
getaddr.c 100 struct target targ; local
103 targ.family = family;
104 targ.foundip = 0;
105 targ.ifindex = if_nametoindex(interface);
106 if(targ.ifindex == 0) {
111 ifa.ifa_family = targ.family;
117 nl_cb_set(callbacks, NL_CB_VALID, NL_CB_CUSTOM, getaddr_cb, &targ);
118 nl_cb_err(callbacks, NL_CB_CUSTOM, error_handler, &targ);
123 if(targ.foundip) {
129 memcpy(retval, &targ.ip, sizeof(union anyip))
    [all...]
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 59 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size); local
60 if (targ != -1ULL && targ == Index+Size)
65 if (targ != -1ULL) {
66 Splits.insert(targ);
67 WorkList.push_back(targ);
77 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size); local
79 if (targ != -1ULL && targ != Index+Size)
80 Calls.push_back(targ);
119 uint64_t targ = Ana->evaluateBranch(Inst.Inst, Inst.Address, Inst.Size); local
    [all...]
MachODump.cpp 608 uint64_t targ = InstrAnalysis->evaluateBranch(Inst.Inst, local
611 if (targ != -1ULL)
612 DumpAddress(targ, Sections, MachOObj, outs());
  /external/icu4c/test/intltest/
transrt.cpp 554 UnicodeString targ = srcStr; local
555 t->transliterate(targ);
556 if (srcStr == targ) return TRUE;
563 UnicodeString srcStr, targ, reverse; local
632 UnicodeString targ = srcStr; local
633 sourceToTarget->transliterate(targ);
636 if (targ != targ2) {
637 logToRulesFails("Source-Target, toRules", srcStr, targ, targ2);
647 UnicodeString targ = srcStr; local
648 targetToSource->transliterate(targ);
666 UnicodeString targ = srcStr; local
715 UnicodeString targ = srcStr; local
    [all...]
  /external/oprofile/libabi/
opimport.cpp 69 void extract(T & targ, void const * src_,
75 void extractor::extract(T & targ, void const * src_,
82 targ = 0;
97 targ = (targ << 8) | src[nbytes];
100 targ = (targ << 8) | src[i];
103 cerr << " = " << targ << endl;
  /external/icu4c/test/cintltst/
ncnvfbts.c 140 char *targ; local
178 targ = junkout;
193 end = nct_min(targ + gOutBufferSize, realBufferEnd);
198 if(targ == realBufferEnd)
200 log_err("Error, overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName);
203 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE");
209 (char **)&targ,
226 sourceLen, targ-junkout);
234 for(p = junkout;p<targ;p++
302 UChar *targ; local
    [all...]
ncnvtst.c 1017 char *targ; local
1107 UChar *targ; local
1203 char *targ; local
1376 UChar *targ; local
    [all...]
nccbtst.c 2660 char *targ; local
2860 UChar *targ; local
3057 char *targ; local
3236 UChar *targ; local
    [all...]
nucnvtst.c 385 char *targ; local
418 targ = junkout;
430 end = nct_min(targ + gOutBufferSize, realBufferEnd);
435 if(targ == realBufferEnd) {
436 log_err("Error, overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName);
439 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE");
445 &targ,
460 sourceLen, targ-junkout);
470 for(ptr = junkout;ptr<targ;ptr++)
543 UChar *targ; local
    [all...]
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 250 Target &targ = FromToMappings[file]; local
251 resetTarget(targ);
252 targ = memBuf;
257 Target &targ = FromToMappings[file]; local
258 resetTarget(targ);
259 targ = newfile;
277 void FileRemapper::resetTarget(Target &targ) {
278 if (!targ)
281 if (llvm::MemoryBuffer *oldmem = targ.dyn_cast<llvm::MemoryBuffer *>()) {
284 const FileEntry *toFE = targ.get<const FileEntry *>()
    [all...]
  /external/icu4c/tools/pkgdata/
pkgtypes.c 248 const char *targ;
256 targ = s+len;
258 while(*s && s<targ) {
259 while(s<targ&&isspace(*s)) s++;
260 for(p=s;s<targ&&!isspace(*p);p++);
  /external/dropbear/
scp.c 304 char *targ, *endp; local
426 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
427 toremote(targ, argc, argv);
454 toremote(char *targ, int argc, char **argv)
463 *targ++ = 0;
464 if (*targ == 0)
465 targ = ".";
518 thost, targ);
523 len = strlen(targ) + CMDNEEDS + 20;
525 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
835 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
    [all...]
  /external/openssh/
scp.c 372 char *targ, **newargv; local
515 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
516 toremote(targ, argc, argv);
554 toremote(char *targ, int argc, char **argv)
564 *targ++ = 0;
565 if (*targ == 0)
566 targ = ".";
609 xasprintf(&bp, "%s -t -- %s", cmd, targ);
650 thost, targ);
655 xasprintf(&bp, "%s -t -- %s", cmd, targ);
912 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
    [all...]
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 69 void resetTarget(Target &targ);
  /dalvik/dexdump/
DexDump.cpp 908 s4 targ = (s4) pDecInsn->vA; local
910 insnIdx + targ,
911 (targ < 0) ? '-' : '+',
912 (targ < 0) ? -targ : targ);
920 s4 targ = (s4) pDecInsn->vB; local
922 insnIdx + targ,
923 (targ < 0) ? '-' : '+',
924 (targ < 0) ? -targ : targ)
956 s4 targ = (s4) pDecInsn->vC; local
    [all...]
  /dalvik/vm/analysis/
DexVerify.cpp 612 u4 targ; local
673 for (targ = 1; targ < switchCount; targ++) {
674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
675 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16);
687 for (targ = 0; targ < switchCount; targ++) {
688 offset = (s4) switchInsns[offsetToTargets + targ*2]
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 507 | ^( t=TOKEN_REF (targ=ARG_ACTION )? )
509 if ( $targ != null )
511 $targ.outerAltNum = this.outerAltNum;
512 trackInlineAction($targ);
ANTLRTreePrinter.g 437 (targ=ARG_ACTION {out("["+$targ.toString()+"]");} )?
  /external/webkit/Tools/android/flex-2.5.4a/
dfa.c 401 int targptr, totaltrans, i, comstate, comfreq, targ; local
656 targ = state[duplist[sym]];
657 state[sym] = targ;
661 sym, targ );
668 while ( targstate[++i] != targ )
  /external/qemu/
qemu-char.c 1221 int *targ = (int *)arg; local
1223 *targ = 0;
1225 *targ |= CHR_TIOCM_CTS;
1227 *targ |= CHR_TIOCM_CAR;
1229 *targ |= CHR_TIOCM_DSR;
1231 *targ |= CHR_TIOCM_RI;
1233 *targ |= CHR_TIOCM_DTR;
1235 *targ |= CHR_TIOCM_RTS;
1241 int targ = 0; local
1242 ioctl(s->fd_in, TIOCMGET, &targ);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 809 int targ = one.getHandlerPc(); local
816 mergeAndWorkAsNecessary(targ, block.getLabel(),
820 Hex.u2(targ));
829 Type already = catchTypes[targ];
831 catchTypes[targ] = exceptionClass.getClassType();
833 catchTypes[targ] = Type.OBJECT;
838 * label getExceptionSetupLabel(targ).
840 newSucc.add(getExceptionSetupLabel(targ));
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 338 Target targ; local
344 targ = cons.newInstance(args);
345 targ.myMethod(17);
  /external/valgrind/main/VEX/switchback/
linker.c 519 Elf_Word* targ;
526 targ = (Elf_Word*)(ehdrC + shdr[ target_shndx ].sh_offset);
534 Elf_Addr P = ((Elf_Addr)targ) + offset;
645 Elf_Addr targ;
652 targ = (Elf_Addr) (ehdrC + shdr[ target_shndx ].sh_offset);
663 Elf_Addr P = targ + offset;
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 425 Elf_Word* targ; local
432 targ = (Elf_Word*)(ehdrC + shdr[ target_shndx ].sh_offset);
440 Elf_Addr P = ((Elf_Addr)targ) + offset;
551 Elf_Addr targ; local
558 targ = (Elf_Addr) (ehdrC + shdr[ target_shndx ].sh_offset);
566 Elf_Addr P = targ + offset;
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.c 1537 const mDNSu8 *targ = result; local
    [all...]

Completed in 638 milliseconds

1 2 3 4