/external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
D | MCFunction.cpp | 59 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size); in createFunctionFromMC() local 60 if (targ != -1ULL && targ == Index+Size) in createFunctionFromMC() 65 if (targ != -1ULL) { in createFunctionFromMC() 66 Splits.insert(targ); in createFunctionFromMC() 67 WorkList.push_back(targ); in createFunctionFromMC() 77 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size); in createFunctionFromMC() local 79 if (targ != -1ULL && targ != Index+Size) in createFunctionFromMC() 80 Calls.push_back(targ); in createFunctionFromMC() 119 uint64_t targ = Ana->evaluateBranch(Inst.Inst, Inst.Address, Inst.Size); in createFunctionFromMC() local 120 if (targ == -1ULL) { in createFunctionFromMC() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | ncnvfbts.c | 142 char *targ; in testConvertFromUnicode() local 180 targ = junkout; in testConvertFromUnicode() 195 end = nct_min(targ + gOutBufferSize, realBufferEnd); in testConvertFromUnicode() 200 if(targ == realBufferEnd) in testConvertFromUnicode() 202 …overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName); in testConvertFromUnicode() 205 …RCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE"… in testConvertFromUnicode() 211 (char **)&targ, in testConvertFromUnicode() 228 sourceLen, targ-junkout); in testConvertFromUnicode() 236 for(p = junkout;p<targ;p++) in testConvertFromUnicode() 254 if(expectLen != targ-junkout) in testConvertFromUnicode() [all …]
|
D | ncnvtst.c | 1017 char *targ; in convertFromU() local 1037 targ=buffer; in convertFromU() 1038 targetLimit=targ+MAX_LENGTH; in convertFromU() 1041 (char **)&targ, in convertFromU() 1055 sourceLen, targ-buffer); in convertFromU() 1057 if(expectLen != targ-buffer) in convertFromU() 1059 … log_err("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage); in convertFromU() 1060 …log_verbose("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage… in convertFromU() 1061 printSeqErr((const unsigned char *)buffer, (int32_t)(targ-buffer)); in convertFromU() 1079 log_verbose("comparing %d offsets..\n", targ-buffer); in convertFromU() [all …]
|
D | nccbtst.c | 2637 char *targ; in testConvertFromUnicode() local 2688 targ = junkout; in testConvertFromUnicode() 2703 end = nct_min(targ + gOutBufferSize, realBufferEnd); in testConvertFromUnicode() 2708 if(targ == realBufferEnd) in testConvertFromUnicode() 2710 …overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName); in testConvertFromUnicode() 2713 …RCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE"… in testConvertFromUnicode() 2719 (char **)&targ, in testConvertFromUnicode() 2753 sourceLen, targ-junkout); in testConvertFromUnicode() 2759 for(p = junkout;p<targ;p++) in testConvertFromUnicode() 2777 if(expectLen != targ-junkout) in testConvertFromUnicode() [all …]
|
/external/android-clat/ |
D | getaddr.c | 102 struct target targ; in getinterface_ip() local 105 targ.family = family; in getinterface_ip() 106 targ.foundip = 0; in getinterface_ip() 107 targ.ifindex = if_nametoindex(interface); in getinterface_ip() 108 if (targ.ifindex == 0) { in getinterface_ip() 113 ifa.ifa_family = targ.family; in getinterface_ip() 119 nl_cb_set(callbacks, NL_CB_VALID, NL_CB_CUSTOM, getaddr_cb, &targ); in getinterface_ip() 120 nl_cb_err(callbacks, NL_CB_CUSTOM, error_handler, &targ); in getinterface_ip() 125 if (targ.foundip) { in getinterface_ip() 131 memcpy(retval, &targ.ip, sizeof(union anyip)); in getinterface_ip()
|
/external/icu/icu4c/source/test/intltest/ |
D | transrt.cpp | 557 UnicodeString targ = srcStr; in checkIrrelevants() local 558 t->transliterate(targ); in checkIrrelevants() 559 if (srcStr == targ) return TRUE; in checkIrrelevants() 566 UnicodeString srcStr, targ, reverse; in test2() local 635 UnicodeString targ = srcStr; in test2() local 636 sourceToTarget->transliterate(targ); in test2() 639 if (targ != targ2) { in test2() 640 logToRulesFails("Source-Target, toRules", srcStr, targ, targ2); in test2() 650 UnicodeString targ = srcStr; in test2() local 651 targetToSource->transliterate(targ); in test2() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | RoundTripTest.java | 1295 String targ = t.transliterate(cs); in checkIrrelevants() local 1296 if (cs.equals(targ)) return true; in checkIrrelevants() 1384 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSource() local 1386 if (!targ.equals(targ2)) { in checkSourceTargetSource() 1387 … logToRulesFails("" + getSourceTarget(transliteratorID) + ", toRules", cs, targ, targ2); in checkSourceTargetSource() 1400 String targ = targetToSource.transliterate(cs); in checkTargetSourceTarget() local 1402 if (!targ.equals(targ2)) { in checkTargetSourceTarget() 1403 … logToRulesFails("" + getTargetSource(transliteratorID) + ", toRules", cs, targ, targ2); in checkTargetSourceTarget() 1422 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSingles() local 1423 if (!toTarget.containsAll(targ) in checkSourceTargetSingles() [all …]
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | RoundTripTest.java | 1292 String targ = t.transliterate(cs); in checkIrrelevants() local 1293 if (cs.equals(targ)) return true; in checkIrrelevants() 1381 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSource() local 1383 if (!targ.equals(targ2)) { in checkSourceTargetSource() 1384 … logToRulesFails("" + getSourceTarget(transliteratorID) + ", toRules", cs, targ, targ2); in checkSourceTargetSource() 1397 String targ = targetToSource.transliterate(cs); in checkTargetSourceTarget() local 1399 if (!targ.equals(targ2)) { in checkTargetSourceTarget() 1400 … logToRulesFails("" + getTargetSource(transliteratorID) + ", toRules", cs, targ, targ2); in checkTargetSourceTarget() 1419 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSingles() local 1420 if (!toTarget.containsAll(targ) in checkSourceTargetSingles() [all …]
|
/external/libvpx/libvpx/vpx_util/ |
D | vpx_thread.h | 248 thread_arg targ = *(thread_arg *)arg; 251 targ.start_(targ.arg_); 257 thread_arg *targ = (thread_arg *)malloc(sizeof(*targ)); 258 if (targ == NULL) return 1; 262 targ->start_ = start; 263 targ->arg_ = arg; 264 tid = (pthread_t)_beginthread(thread_start, NULL, 1024 * 1024, targ); 266 free(targ);
|
/external/libaom/libaom/aom_util/ |
D | aom_thread.h | 241 thread_arg targ = *(thread_arg *)arg; 244 targ.start_(targ.arg_); 250 thread_arg *targ = (thread_arg *)malloc(sizeof(*targ)); 251 if (targ == NULL) return 1; 255 targ->start_ = start; 256 targ->arg_ = arg; 257 tid = (pthread_t)_beginthread(thread_start, NULL, 1024 * 1024, targ); 259 free(targ);
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_shader_state.c | 315 struct nvc0_so_target *targ = nvc0_so_target(nvc0->tfbbuf[b]); in nvc0_tfb_validate() local 318 if (!targ) { in nvc0_tfb_validate() 324 targ->stride = tfb->stride[b]; in nvc0_tfb_validate() 326 buf = nv04_resource(targ->pipe.buffer); in nvc0_tfb_validate() 333 if (!targ->clean) in nvc0_tfb_validate() 334 nvc0_hw_query_fifo_wait(nvc0, nvc0_query(targ->pq)); in nvc0_tfb_validate() 338 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset); in nvc0_tfb_validate() 339 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset); in nvc0_tfb_validate() 340 PUSH_DATA (push, targ->pipe.buffer_size); in nvc0_tfb_validate() 341 if (!targ->clean) { in nvc0_tfb_validate() [all …]
|
D | nvc0_state.c | 979 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); in nvc0_so_target_create() local 980 if (!targ) in nvc0_so_target_create() 983 targ->pq = pipe->create_query(pipe, NVC0_HW_QUERY_TFB_BUFFER_OFFSET, 0); in nvc0_so_target_create() 984 if (!targ->pq) { in nvc0_so_target_create() 985 FREE(targ); in nvc0_so_target_create() 988 targ->clean = true; in nvc0_so_target_create() 990 targ->pipe.buffer_size = size; in nvc0_so_target_create() 991 targ->pipe.buffer_offset = offset; in nvc0_so_target_create() 992 targ->pipe.context = pipe; in nvc0_so_target_create() 993 targ->pipe.buffer = NULL; in nvc0_so_target_create() [all …]
|
/external/clang/lib/ARCMigrate/ |
D | FileRemapper.cpp | 214 Target &targ = FromToMappings[file]; in remap() local 215 resetTarget(targ); in remap() 216 targ = memBuf.release(); in remap() 221 Target &targ = FromToMappings[file]; in remap() local 222 resetTarget(targ); in remap() 223 targ = newfile; in remap() 241 void FileRemapper::resetTarget(Target &targ) { in resetTarget() argument 242 if (!targ) in resetTarget() 245 if (llvm::MemoryBuffer *oldmem = targ.dyn_cast<llvm::MemoryBuffer *>()) { in resetTarget() 248 const FileEntry *toFE = targ.get<const FileEntry *>(); in resetTarget()
|
/external/openssh/ |
D | scp.c | 374 char *targ, **newargv; in main() local 529 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */ in main() 530 toremote(targ, argc, argv); in main() 586 toremote(char *targ, int argc, char **argv) in toremote() argument 596 *targ++ = 0; in toremote() 597 if (*targ == 0) in toremote() 598 targ = "."; in toremote() 643 *targ == '-' ? "-- " : "", targ); in toremote() 684 thost, targ); in toremote() 690 *targ == '-' ? "-- " : "", targ); in toremote() [all …]
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_state.c | 1098 struct nv50_so_target *targ = MALLOC_STRUCT(nv50_so_target); in nv50_so_target_create() local 1099 if (!targ) in nv50_so_target_create() 1103 targ->pq = pipe->create_query(pipe, in nv50_so_target_create() 1105 if (!targ->pq) { in nv50_so_target_create() 1106 FREE(targ); in nv50_so_target_create() 1110 targ->pq = NULL; in nv50_so_target_create() 1112 targ->clean = true; in nv50_so_target_create() 1114 targ->pipe.buffer_size = size; in nv50_so_target_create() 1115 targ->pipe.buffer_offset = offset; in nv50_so_target_create() 1116 targ->pipe.context = pipe; in nv50_so_target_create() [all …]
|
D | nv50_shader_state.c | 693 struct nv50_so_target *targ = nv50_so_target(nv50->so_target[i]); in nv50_stream_output_validate() local 694 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer); in nv50_stream_output_validate() 698 if (n == 4 && !targ->clean) in nv50_stream_output_validate() 699 nv84_hw_query_fifo_wait(push, nv50_query(targ->pq)); in nv50_stream_output_validate() 701 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset); in nv50_stream_output_validate() 702 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset); in nv50_stream_output_validate() 705 PUSH_DATA(push, targ->pipe.buffer_size); in nv50_stream_output_validate() 706 if (!targ->clean) { in nv50_stream_output_validate() 707 assert(targ->pq); in nv50_stream_output_validate() 709 nv50_query(targ->pq), 0x4); in nv50_stream_output_validate() [all …]
|
D | nv50_push.c | 294 struct nv50_so_target *targ; in nv50_push_vbo() local 295 targ = nv50_so_target(info->count_from_stream_output); in nv50_push_vbo() 296 if (!targ->pq) { in nv50_push_vbo() 300 pipe->get_query_result(pipe, targ->pq, true, (void *)&vert_count); in nv50_push_vbo() 301 vert_count /= targ->stride; in nv50_push_vbo()
|
/external/selinux/libsemanage/src/ |
D | semanage_store.c | 1293 char **argv = NULL, *s, *arg = NULL, *targ; in split_args() local 1306 targ = append(arg, '\\'); in split_args() 1307 if (targ == NULL) in split_args() 1309 arg = targ; in split_args() 1311 targ = append(arg, *(s + 1)); in split_args() 1312 if (targ == NULL) in split_args() 1314 arg = targ; in split_args() 1321 targ = append(arg, *s); in split_args() 1322 if (targ == NULL) in split_args() 1324 arg = targ; in split_args() [all …]
|
/external/icu/icu4c/source/tools/pkgdata/ |
D | pkgtypes.c | 250 const char *targ; 258 targ = s+len; 260 while(*s && s<targ) { 261 while(s<targ&&isspace(*s)) s++; 262 for(p=s;s<targ&&!isspace(*p);p++);
|
/external/cldr/tools/scripts/web/ |
D | bugdiffs | 2273 my $targ = shift || ''; 2277 $targ = " target=\"$targ\"" if ($targ); 2278 "<A href=\"" . jitterbugURL($user, $id) . "\"$targ>$id</A>"; 2288 my $targ = shift; 2289 $targ = " target=\"$targ\"" if ($targ); 2291 "<A href=\"$LOG_URL/$relFile\"$targ>$relFile</A>"; 2304 my $targ = shift; 2305 $targ = " target=\"$targ\"" if ($targ); 2306 "<A href=\"$LOG_URL/$mod/?only_with_tag=$tag\"$targ>$tag</A>";
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_target.cpp | 172 void Target::destroy(Target *targ) in destroy() argument 174 delete targ; in destroy() 177 CodeEmitter::CodeEmitter(const Target *target) : targ(target), fixupInfo(NULL) in CodeEmitter() 290 if (i->op == OP_MEMBAR && !targ->isOpSupported(OP_MEMBAR, TYPE_NONE)) { in prepareEmission() 528 nv50_ir::Target *targ = nv50_ir::Target::create(chipset); in nv50_ir_get_target_library() local 529 targ->getBuiltinCode(code, size); in nv50_ir_get_target_library() 530 nv50_ir::Target::destroy(targ); in nv50_ir_get_target_library()
|
D | nv50_ir.h | 933 Target(TexTarget targ = TEX_TARGET_2D) : target(targ) { } in target() argument 952 Target& operator=(TexTarget targ) 954 assert(targ < TEX_TARGET_COUNT); 955 target = targ; 959 inline bool operator==(TexTarget targ) const { return target == targ; } 960 inline bool operator!=(TexTarget targ) const { return target != targ; } 1000 inline void setTexture(Target targ, uint8_t r, uint8_t s) in setTexture() argument 1004 tex.target = targ; in setTexture() 1247 Program(Type type, Target *targ);
|
/external/clang/test/OpenMP/ |
D | target_update_ast_print.cpp | 12 T foo(T targ, U uarg) { in foo() argument 19 return a + targ + (T)b; in foo()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Utility.java | 34 Object[] targ = (Object[]) target; in arrayEquals() 35 return (source.length == targ.length in arrayEquals() 36 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 46 int[] targ = (int[]) target; in arrayEquals() local 47 return (source.length == targ.length in arrayEquals() 48 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 58 double[] targ = (double[]) target; in arrayEquals() local 59 return (source.length == targ.length in arrayEquals() 60 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 65 byte[] targ = (byte[]) target; in arrayEquals() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Utility.java | 38 Object[] targ = (Object[]) target; in arrayEquals() 39 return (source.length == targ.length in arrayEquals() 40 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 50 int[] targ = (int[]) target; in arrayEquals() local 51 return (source.length == targ.length in arrayEquals() 52 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 62 double[] targ = (double[]) target; in arrayEquals() local 63 return (source.length == targ.length in arrayEquals() 64 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals() 69 byte[] targ = (byte[]) target; in arrayEquals() [all …]
|