Home
last modified time | relevance | path

Searched refs:targ (Results 1 – 25 of 80) sorted by relevance

1234

/external/icu/icu4c/source/test/cintltst/
Dncnvfbts.c140 char *targ; in testConvertFromUnicode() local
178 targ = junkout; in testConvertFromUnicode()
193 end = nct_min(targ + gOutBufferSize, realBufferEnd); in testConvertFromUnicode()
198 if(targ == realBufferEnd) in testConvertFromUnicode()
200 …overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName); in testConvertFromUnicode()
203 …RCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE"… in testConvertFromUnicode()
209 (char **)&targ, in testConvertFromUnicode()
226 sourceLen, targ-junkout); in testConvertFromUnicode()
234 for(p = junkout;p<targ;p++) in testConvertFromUnicode()
252 if(expectLen != targ-junkout) in testConvertFromUnicode()
[all …]
Dncnvtst.c1019 char *targ; in convertFromU() local
1039 targ=buffer; in convertFromU()
1040 targetLimit=targ+MAX_LENGTH; in convertFromU()
1043 (char **)&targ, in convertFromU()
1057 sourceLen, targ-buffer); in convertFromU()
1059 if(expectLen != targ-buffer) in convertFromU()
1061 … log_err("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage); in convertFromU()
1062 …log_verbose("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage… in convertFromU()
1063 printSeqErr((const unsigned char *)buffer, (int32_t)(targ-buffer)); in convertFromU()
1081 log_verbose("comparing %d offsets..\n", targ-buffer); in convertFromU()
[all …]
Dnccbtst.c2635 char *targ; in testConvertFromUnicode() local
2686 targ = junkout; in testConvertFromUnicode()
2701 end = nct_min(targ + gOutBufferSize, realBufferEnd); in testConvertFromUnicode()
2706 if(targ == realBufferEnd) in testConvertFromUnicode()
2708 …overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName); in testConvertFromUnicode()
2711 …RCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE"… in testConvertFromUnicode()
2717 (char **)&targ, in testConvertFromUnicode()
2751 sourceLen, targ-junkout); in testConvertFromUnicode()
2757 for(p = junkout;p<targ;p++) in testConvertFromUnicode()
2775 if(expectLen != targ-junkout) in testConvertFromUnicode()
[all …]
Dnucnvtst.c369 char *targ; in testConvertFromU() local
402 targ = junkout; in testConvertFromU()
414 end = nct_min(targ + gOutBufferSize, realBufferEnd); in testConvertFromU()
419 if(targ == realBufferEnd) { in testConvertFromU()
420 …overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName); in testConvertFromU()
423 …RCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE"… in testConvertFromU()
429 &targ, in testConvertFromU()
444 sourceLen, targ-junkout); in testConvertFromU()
454 for(ptr = junkout;ptr<targ;ptr++) { in testConvertFromU()
469 if(expectLen != targ-junkout) { in testConvertFromU()
[all …]
/external/android-clat/
Dgetaddr.c102 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/
Dtransrt.cpp554 UnicodeString targ = srcStr; in checkIrrelevants() local
555 t->transliterate(targ); in checkIrrelevants()
556 if (srcStr == targ) return TRUE; in checkIrrelevants()
563 UnicodeString srcStr, targ, reverse; in test2() local
632 UnicodeString targ = srcStr; in test2() local
633 sourceToTarget->transliterate(targ); in test2()
636 if (targ != targ2) { in test2()
637 logToRulesFails("Source-Target, toRules", srcStr, targ, targ2); in test2()
647 UnicodeString targ = srcStr; in test2() local
648 targetToSource->transliterate(targ); in test2()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DRoundTripTest.java1266 String targ = t.transliterate(cs); in checkIrrelevants() local
1267 if (cs.equals(targ)) return true; in checkIrrelevants()
1354 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSource() local
1356 if (!targ.equals(targ2)) { in checkSourceTargetSource()
1357 … logToRulesFails("" + getSourceTarget(transliteratorID) + ", toRules", cs, targ, targ2); in checkSourceTargetSource()
1370 String targ = targetToSource.transliterate(cs); in checkTargetSourceTarget() local
1372 if (!targ.equals(targ2)) { in checkTargetSourceTarget()
1373 … logToRulesFails("" + getTargetSource(transliteratorID) + ", toRules", cs, targ, targ2); in checkTargetSourceTarget()
1392 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSingles() local
1393 if (!toTarget.containsAll(targ) in checkSourceTargetSingles()
[all …]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRoundTripTest.java1262 String targ = t.transliterate(cs); in checkIrrelevants() local
1263 if (cs.equals(targ)) return true; in checkIrrelevants()
1350 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSource() local
1352 if (!targ.equals(targ2)) { in checkSourceTargetSource()
1353 … logToRulesFails("" + getSourceTarget(transliteratorID) + ", toRules", cs, targ, targ2); in checkSourceTargetSource()
1366 String targ = targetToSource.transliterate(cs); in checkTargetSourceTarget() local
1368 if (!targ.equals(targ2)) { in checkTargetSourceTarget()
1369 … logToRulesFails("" + getTargetSource(transliteratorID) + ", toRules", cs, targ, targ2); in checkTargetSourceTarget()
1388 String targ = sourceToTarget.transliterate(cs); in checkSourceTargetSingles() local
1389 if (!toTarget.containsAll(targ) in checkSourceTargetSingles()
[all …]
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_shader_state.c252 struct nvc0_so_target *targ = nvc0_so_target(nvc0->tfbbuf[b]); in nvc0_tfb_validate() local
253 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer); in nvc0_tfb_validate()
256 targ->stride = tfb->stride[b]; in nvc0_tfb_validate()
261 if (!targ->clean) in nvc0_tfb_validate()
262 nvc0_query_fifo_wait(push, targ->pq); in nvc0_tfb_validate()
265 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset); in nvc0_tfb_validate()
266 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset); in nvc0_tfb_validate()
267 PUSH_DATA (push, targ->pipe.buffer_size); in nvc0_tfb_validate()
268 if (!targ->clean) { in nvc0_tfb_validate()
269 nvc0_query_pushbuf_submit(push, targ->pq, 0x4); in nvc0_tfb_validate()
[all …]
Dnvc0_state.c875 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); in nvc0_so_target_create() local
876 if (!targ) in nvc0_so_target_create()
879 targ->pq = pipe->create_query(pipe, NVC0_QUERY_TFB_BUFFER_OFFSET); in nvc0_so_target_create()
880 if (!targ->pq) { in nvc0_so_target_create()
881 FREE(targ); in nvc0_so_target_create()
884 targ->clean = TRUE; in nvc0_so_target_create()
886 targ->pipe.buffer_size = size; in nvc0_so_target_create()
887 targ->pipe.buffer_offset = offset; in nvc0_so_target_create()
888 targ->pipe.context = pipe; in nvc0_so_target_create()
889 targ->pipe.buffer = NULL; in nvc0_so_target_create()
[all …]
Dnvc0_push.c345 struct nvc0_so_target *targ; in nvc0_push_vbo() local
346 targ = nvc0_so_target(info->count_from_stream_output); in nvc0_push_vbo()
347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count); in nvc0_push_vbo()
348 vert_count /= targ->stride; in nvc0_push_vbo()
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp214 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/selinux/libsemanage/src/
Dsemanage_store.c1231 char **argv = NULL, *s, *arg = NULL, *targ; in split_args() local
1244 targ = append(arg, '\\'); in split_args()
1245 if (targ == NULL) in split_args()
1247 arg = targ; in split_args()
1249 targ = append(arg, *(s + 1)); in split_args()
1250 if (targ == NULL) in split_args()
1252 arg = targ; in split_args()
1259 targ = append(arg, *s); in split_args()
1260 if (targ == NULL) in split_args()
1262 arg = targ; in split_args()
[all …]
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_state.c953 struct nv50_so_target *targ = MALLOC_STRUCT(nv50_so_target); in nv50_so_target_create() local
954 if (!targ) in nv50_so_target_create()
958 targ->pq = pipe->create_query(pipe, in nv50_so_target_create()
960 if (!targ->pq) { in nv50_so_target_create()
961 FREE(targ); in nv50_so_target_create()
965 targ->pq = NULL; in nv50_so_target_create()
967 targ->clean = TRUE; in nv50_so_target_create()
969 targ->pipe.buffer_size = size; in nv50_so_target_create()
970 targ->pipe.buffer_offset = offset; in nv50_so_target_create()
971 targ->pipe.context = pipe; in nv50_so_target_create()
[all …]
Dnv50_shader_state.c586 struct nv50_so_target *targ = nv50_so_target(nv50->so_target[i]); in nv50_stream_output_validate() local
587 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer); in nv50_stream_output_validate()
591 if (n == 4 && !targ->clean) in nv50_stream_output_validate()
592 nv84_query_fifo_wait(push, targ->pq); in nv50_stream_output_validate()
594 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset); in nv50_stream_output_validate()
595 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset); in nv50_stream_output_validate()
598 PUSH_DATA(push, targ->pipe.buffer_size); in nv50_stream_output_validate()
601 if (!targ->clean) { in nv50_stream_output_validate()
602 assert(targ->pq); in nv50_stream_output_validate()
603 nv50_query_pushbuf_submit(push, targ->pq, 0x4); in nv50_stream_output_validate()
[all …]
Dnv50_push.c254 struct nv50_so_target *targ; in nv50_push_vbo() local
255 targ = nv50_so_target(info->count_from_stream_output); in nv50_push_vbo()
256 if (!targ->pq) { in nv50_push_vbo()
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count); in nv50_push_vbo()
261 vert_count /= targ->stride; in nv50_push_vbo()
Dnv50_query.c370 struct nv50_so_target *targ = nv50_so_target(ptarg); in nva0_so_target_save_offset() local
379 nv50_query(targ->pq)->index = index; in nva0_so_target_save_offset()
380 nv50_query_end(pipe, targ->pq); in nva0_so_target_save_offset()
/external/icu/icu4c/source/tools/pkgdata/
Dpkgtypes.c248 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/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_target.cpp136 void Target::destroy(Target *targ) in destroy() argument
138 delete targ; in destroy()
141 CodeEmitter::CodeEmitter(const Target *target) : targ(target) in CodeEmitter()
436 nv50_ir::Target *targ = nv50_ir::Target::create(chipset); in nv50_ir_get_target_library() local
437 targ->getBuiltinCode(code, size); in nv50_ir_get_target_library()
438 nv50_ir::Target::destroy(targ); in nv50_ir_get_target_library()
Dnv50_ir.h741 Target(TexTarget targ = TEX_TARGET_2D) : target(targ) { } in target() argument
750 Target& operator=(TexTarget targ)
752 assert(targ < TEX_TARGET_COUNT);
756 inline bool operator==(TexTarget targ) const { return target == targ; }
782 inline void setTexture(Target targ, uint8_t r, uint8_t s) in setTexture() argument
786 tex.target = targ; in setTexture()
1023 Program(Type type, Target *targ);
Dnv50_ir.cpp952 FlowInstruction::FlowInstruction(Function *fn, operation op, void *targ) in FlowInstruction() argument
956 target.fn = reinterpret_cast<Function *>(targ); in FlowInstruction()
958 target.bb = reinterpret_cast<BasicBlock *>(targ); in FlowInstruction()
966 terminator = targ ? 1 : 0; in FlowInstruction()
1114 nv50_ir::Target *targ = nv50_ir::Target::create(info->target); in nv50_ir_generate_code() local
1115 if (!targ) in nv50_ir_generate_code()
1118 nv50_ir::Program *prog = new nv50_ir::Program(type, targ); in nv50_ir_generate_code()
1143 targ->parseDriverInfo(info); in nv50_ir_generate_code()
1179 nv50_ir::Target::destroy(targ); in nv50_ir_generate_code()
Dnv50_ir_build_util.cpp245 BuildUtil::mkTex(operation op, TexTarget targ, uint8_t tic, uint8_t tsc, in mkTex() argument
255 tex->setTexture(targ, tic, tsc); in mkTex()
307 BuildUtil::mkFlow(operation op, void *targ, CondCode cc, Value *pred) in mkFlow() argument
309 FlowInstruction *insn = new_FlowInstruction(func, op, targ); in mkFlow()
/external/libvncserver/webclients/java-applet/ssl/
Dss_vncviewer355 targ="-t"
357 targ=""
2717 …echo "$ssh -f -x $ssh_port1 $targ -e none $ssh_NHAFL $ukhf -L $proxport:$ssh_host2:$ssh_port2 \"$u…
2719 …$ssh -f -x $ssh_port1 $targ -e none $ssh_NHAFL $ukhf -L $proxport:$ssh_host2:$ssh_port2 "$uath" "s…
2786 echo "$ssh -x $ssh_port $targ $C $ssh_args \"$uath\" \"$info\""
2788 $ssh -x $ssh_port $targ $C $ssh_args "$uath" "$ssh_cmd"
2792 echo "$ssh -x $ssh_port $targ $C $ssh_redir $ssh_args \"$uath\" \"$info\""
2794 $ssh -x $ssh_port $targ $C $ssh_redir $ssh_args "$uath" "$ssh_cmd"
2809 targ="-t"
2810 $ssh -x $ssh_port $targ $ssh_args "$uath" "sudo id; tty"
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUtility.java36 Object[] targ = (Object[]) target; in arrayEquals()
37 return (source.length == targ.length in arrayEquals()
38 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
48 int[] targ = (int[]) target; in arrayEquals() local
49 return (source.length == targ.length in arrayEquals()
50 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
60 double[] targ = (double[]) target; in arrayEquals() local
61 return (source.length == targ.length in arrayEquals()
62 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
67 byte[] targ = (byte[]) target; in arrayEquals()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUtility.java32 Object[] targ = (Object[]) target; in arrayEquals()
33 return (source.length == targ.length in arrayEquals()
34 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
44 int[] targ = (int[]) target; in arrayEquals() local
45 return (source.length == targ.length in arrayEquals()
46 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
56 double[] targ = (double[]) target; in arrayEquals() local
57 return (source.length == targ.length in arrayEquals()
58 && arrayRegionMatches(source, 0, targ, 0, source.length)); in arrayEquals()
63 byte[] targ = (byte[]) target; in arrayEquals()
[all …]

1234