Searched refs:targ (Results 1 - 25 of 116) sorted by relevance

12345

/external/android-clat/
H A Dgetaddr.c102 struct target targ; local
105 targ.family = family;
106 targ.foundip = 0;
107 targ.ifindex = if_nametoindex(interface);
108 if(targ.ifindex == 0) {
113 ifa.ifa_family = targ.family;
119 nl_cb_set(callbacks, NL_CB_VALID, NL_CB_CUSTOM, getaddr_cb, &targ);
120 nl_cb_err(callbacks, NL_CB_CUSTOM, error_handler, &targ);
125 if(targ.foundip) {
131 memcpy(retval, &targ
[all...]
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/Android.mk
19 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/target_type
23 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/target
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtransrt.cpp554 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/icu/icu4c/source/test/intltest/
H A Dtransrt.cpp554 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/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_shader_state.c252 struct nvc0_so_target *targ = nvc0_so_target(nvc0->tfbbuf[b]); local
253 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer);
256 targ->stride = tfb->stride[b];
261 if (!targ->clean)
262 nvc0_query_fifo_wait(push, targ->pq);
265 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset);
266 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset);
267 PUSH_DATA (push, targ->pipe.buffer_size);
268 if (!targ->clean) {
269 nvc0_query_pushbuf_submit(push, targ
[all...]
H A Dnvc0_state.c875 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); local
876 if (!targ)
879 targ->pq = pipe->create_query(pipe, NVC0_QUERY_TFB_BUFFER_OFFSET);
880 if (!targ->pq) {
881 FREE(targ);
884 targ->clean = TRUE;
886 targ->pipe.buffer_size = size;
887 targ->pipe.buffer_offset = offset;
888 targ->pipe.context = pipe;
889 targ
900 struct nvc0_so_target *targ = nvc0_so_target(ptarg); local
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_shader_state.c252 struct nvc0_so_target *targ = nvc0_so_target(nvc0->tfbbuf[b]); local
253 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer);
256 targ->stride = tfb->stride[b];
261 if (!targ->clean)
262 nvc0_query_fifo_wait(push, targ->pq);
265 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset);
266 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset);
267 PUSH_DATA (push, targ->pipe.buffer_size);
268 if (!targ->clean) {
269 nvc0_query_pushbuf_submit(push, targ
[all...]
H A Dnvc0_state.c875 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); local
876 if (!targ)
879 targ->pq = pipe->create_query(pipe, NVC0_QUERY_TFB_BUFFER_OFFSET);
880 if (!targ->pq) {
881 FREE(targ);
884 targ->clean = TRUE;
886 targ->pipe.buffer_size = size;
887 targ->pipe.buffer_offset = offset;
888 targ->pipe.context = pipe;
889 targ
900 struct nvc0_so_target *targ = nvc0_so_target(ptarg); local
[all...]
/external/oprofile/libabi/
H A Dopimport.cpp69 void extract(T & targ, void const * src_,
75 void extractor::extract(T & targ, void const * src_, argument
82 targ = 0;
97 targ = (targ << 8) | src[nbytes];
100 targ = (targ << 8) | src[i];
103 cerr << " = " << targ << endl;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dncnvfbts.c140 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;
302 UChar *targ; local
[all...]
H A Dncnvtst.c999 char *targ; local
1019 targ=buffer;
1020 targetLimit=targ+MAX_LENGTH;
1023 (char **)&targ,
1037 sourceLen, targ-buffer);
1039 if(expectLen != targ-buffer)
1041 log_err("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage);
1042 log_verbose("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage);
1043 printSeqErr((const unsigned char *)buffer, (int32_t)(targ-buffer));
1061 log_verbose("comparing %d offsets..\n", targ
1089 UChar *targ; local
1185 char *targ; local
1358 UChar *targ; local
[all...]
H A Dnccbtst.c2631 char *targ; local
2682 targ = junkout;
2697 end = nct_min(targ + gOutBufferSize, realBufferEnd);
2702 if(targ == realBufferEnd)
2704 log_err("Error, overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName);
2707 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE");
2713 (char **)&targ,
2747 sourceLen, targ-junkout);
2753 for(p = junkout;p<targ;
2828 UChar *targ; local
3022 char *targ; local
3201 UChar *targ; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dncnvfbts.c140 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;
302 UChar *targ; local
[all...]
H A Dncnvtst.c1017 char *targ; local
1037 targ=buffer;
1038 targetLimit=targ+MAX_LENGTH;
1041 (char **)&targ,
1055 sourceLen, targ-buffer);
1057 if(expectLen != targ-buffer)
1059 log_err("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage);
1060 log_verbose("Expected %d chars out, got %d FROM Unicode to %s\n", expectLen, targ-buffer, codepage);
1061 printSeqErr((const unsigned char *)buffer, (int32_t)(targ-buffer));
1079 log_verbose("comparing %d offsets..\n", targ
1107 UChar *targ; local
1203 char *targ; local
1376 UChar *targ; local
[all...]
H A Dnccbtst.c2635 char *targ; local
2686 targ = junkout;
2701 end = nct_min(targ + gOutBufferSize, realBufferEnd);
2706 if(targ == realBufferEnd)
2708 log_err("Error, overflowed the real buffer while about to call fromUnicode! targ=%08lx %s", targ, gNuConvTestName);
2711 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE");
2717 (char **)&targ,
2751 sourceLen, targ-junkout);
2757 for(p = junkout;p<targ;
2832 UChar *targ; local
3026 char *targ; local
3205 UChar *targ; local
[all...]
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp216 Target &targ = FromToMappings[file]; local
217 resetTarget(targ);
218 targ = memBuf;
223 Target &targ = FromToMappings[file]; local
224 resetTarget(targ);
225 targ = newfile;
243 void FileRemapper::resetTarget(Target &targ) { argument
244 if (!targ)
247 if (llvm::MemoryBuffer *oldmem = targ.dyn_cast<llvm::MemoryBuffer *>()) {
250 const FileEntry *toFE = targ
[all...]
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A 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/icu/icu4c/source/tools/pkgdata/
H A 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/clang/include/clang/ARCMigrate/
H A DFileRemapper.h66 void resetTarget(Target &targ);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_push.c254 struct nv50_so_target *targ; local
255 targ = nv50_so_target(info->count_from_stream_output);
256 if (!targ->pq) {
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count);
261 vert_count /= targ->stride;
H A Dnv50_state.c953 struct nv50_so_target *targ = MALLOC_STRUCT(nv50_so_target); local
954 if (!targ)
958 targ->pq = pipe->create_query(pipe,
960 if (!targ->pq) {
961 FREE(targ);
965 targ->pq = NULL;
967 targ->clean = TRUE;
969 targ->pipe.buffer_size = size;
970 targ->pipe.buffer_offset = offset;
971 targ
983 struct nv50_so_target *targ = nv50_so_target(ptarg); local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_push.c254 struct nv50_so_target *targ; local
255 targ = nv50_so_target(info->count_from_stream_output);
256 if (!targ->pq) {
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count);
261 vert_count /= targ->stride;
H A Dnv50_state.c953 struct nv50_so_target *targ = MALLOC_STRUCT(nv50_so_target); local
954 if (!targ)
958 targ->pq = pipe->create_query(pipe,
960 if (!targ->pq) {
961 FREE(targ);
965 targ->pq = NULL;
967 targ->clean = TRUE;
969 targ->pipe.buffer_size = size;
970 targ->pipe.buffer_offset = offset;
971 targ
983 struct nv50_so_target *targ = nv50_so_target(ptarg); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.cpp136 void Target::destroy(Target *targ) argument
138 delete targ;
141 CodeEmitter::CodeEmitter(const Target *target) : targ(target)
436 nv50_ir::Target *targ = nv50_ir::Target::create(chipset);
437 targ->getBuiltinCode(code, size);
438 nv50_ir::Target::destroy(targ);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.cpp136 void Target::destroy(Target *targ) argument
138 delete targ;
141 CodeEmitter::CodeEmitter(const Target *target) : targ(target)
436 nv50_ir::Target *targ = nv50_ir::Target::create(chipset);
437 targ->getBuiltinCode(code, size);
438 nv50_ir::Target::destroy(targ);

Completed in 7981 milliseconds

12345