/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Blur25.java | 76 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local 77 tb.setX(width); 78 tb.setY(height); 79 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 80 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
Blur25G.java | 67 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 68 tb.setX(width); 69 tb.setY(height); 70 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 71 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
Histogram.java | 44 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); local 45 tb.setX(256).setY(steps); 46 Type t = tb.create();
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Blur25.java | 72 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local 73 tb.setX(width); 74 tb.setY(height); 75 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 76 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
Blur25.java | 76 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local 77 tb.setX(width); 78 tb.setY(height); 79 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 80 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
/external/iproute2/ip/ |
ipaddrlabel.c | 62 struct rtattr *tb[IFAL_MAX+1]; local 72 parse_rtattr(tb, IFAL_MAX, IFAL_RTA(ifal), len); 77 if (tb[IFAL_ADDRESS]) { 80 RTA_PAYLOAD(tb[IFAL_ADDRESS]), 81 RTA_DATA(tb[IFAL_ADDRESS]), 89 if (tb[IFAL_LABEL] && RTA_PAYLOAD(tb[IFAL_LABEL]) == sizeof(int32_t)) { 91 memcpy(&label, RTA_DATA(tb[IFAL_LABEL]), sizeof(label)); 198 struct rtattr * tb[IFAL_MAX+1]; local 204 parse_rtattr(tb, IFAL_MAX, RTM_RTA(r), len) [all...] |
ipaddress.c | 144 static void print_queuelen(FILE *f, struct rtattr *tb[IFLA_MAX + 1]) 148 if (tb[IFLA_TXQLEN]) 149 qlen = *(int *)RTA_DATA(tb[IFLA_TXQLEN]); 158 strcpy(ifr.ifr_name, rta_getattr_str(tb[IFLA_IFNAME])); 175 static void print_linkmode(FILE *f, struct rtattr *tb) 177 unsigned int mode = rta_getattr_u8(tb); 185 static void print_linktype(FILE *fp, struct rtattr *tb) 191 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb); 365 struct rtattr * tb[IFLA_MAX+1]; local 381 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len) 978 struct rtattr *tb[IFA_MAX+1]; local [all...] |
ipntable.c | 357 struct rtattr *tb[NDTA_MAX+1]; local 375 parse_rtattr(tb, NDTA_MAX, NDTA_RTA(ndtm), 378 if (tb[NDTA_NAME]) { 379 const char *name = rta_getattr_str(tb[NDTA_NAME]); 384 if (tb[NDTA_PARMS]) { 385 parse_rtattr(tpb, NDTPA_MAX, RTA_DATA(tb[NDTA_PARMS]), 386 RTA_PAYLOAD(tb[NDTA_PARMS])); 408 if (tb[NDTA_NAME]) { 409 const char *name = rta_getattr_str(tb[NDTA_NAME]); 415 ret = (tb[NDTA_THRESH1] || tb[NDTA_THRESH2] || tb[NDTA_THRESH3] | [all...] |
ipneigh.c | 189 struct rtattr * tb[NDA_MAX+1]; local 217 parse_rtattr(tb, NDA_MAX, NDA_RTA(r), n->nlmsg_len - NLMSG_LENGTH(sizeof(*r))); 219 if (tb[NDA_DST]) { 224 memcpy(&dst.data, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST])); 229 if (filter.unused_only && tb[NDA_CACHEINFO]) { 230 struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]); 252 if (tb[NDA_DST]) { 255 RTA_PAYLOAD(tb[NDA_DST]), 256 RTA_DATA(tb[NDA_DST]) [all...] |
ip_common.h | 46 static inline int rtm_get_table(struct rtmsg *r, struct rtattr **tb) 49 if (tb[RTA_TABLE]) 50 table = rta_getattr_u32(tb[RTA_TABLE]);
|
/external/libnl/lib/netfilter/ |
queue_msg.c | 66 struct nlattr *tb[NFQA_MAX+1]; local 76 err = nlmsg_parse(nlh, sizeof(struct nfgenmsg), tb, NFQA_MAX, 84 attr = tb[NFQA_PACKET_HDR]; 94 attr = tb[NFQA_MARK]; 98 attr = tb[NFQA_TIMESTAMP]; 108 attr = tb[NFQA_IFINDEX_INDEV]; 112 attr = tb[NFQA_IFINDEX_OUTDEV]; 116 attr = tb[NFQA_IFINDEX_PHYSINDEV]; 120 attr = tb[NFQA_IFINDEX_PHYSOUTDEV]; 124 attr = tb[NFQA_HWADDR] [all...] |
/external/iproute2/tc/ |
m_xt.c | 272 struct rtattr *tb[TCA_IPT_MAX + 1]; local 281 parse_rtattr_nested(tb, TCA_IPT_MAX, arg); 283 if (tb[TCA_IPT_TABLE] == NULL) { 287 rta_getattr_str(tb[TCA_IPT_TABLE])); 290 if (tb[TCA_IPT_HOOK] == NULL) { 295 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]); 299 if (tb[TCA_IPT_TARG] == NULL) { 304 t = RTA_DATA(tb[TCA_IPT_TARG]); 327 if (tb[TCA_IPT_INDEX] == NULL) { 331 index = rta_getattr_u32(tb[TCA_IPT_INDEX]) [all...] |
m_xt_old.c | 356 struct rtattr *tb[TCA_IPT_MAX + 1]; local 364 parse_rtattr_nested(tb, TCA_IPT_MAX, arg); 366 if (tb[TCA_IPT_TABLE] == NULL) { 370 rta_getattr_str(tb[TCA_IPT_TABLE])); 373 if (tb[TCA_IPT_HOOK] == NULL) { 378 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]); 382 if (tb[TCA_IPT_TARG] == NULL) { 387 t = RTA_DATA(tb[TCA_IPT_TARG]); 405 if (tb[TCA_IPT_INDEX] == NULL) { 409 index = rta_getattr_u32(tb[TCA_IPT_INDEX]) [all...] |
tc_class.c | 157 struct rtattr * tb[TCA_MAX+1]; local 176 memset(tb, 0, sizeof(tb)); 177 parse_rtattr(tb, TCA_MAX, TCA_RTA(t), len); 179 if (tb[TCA_KIND] == NULL) { 194 fprintf(fp, "class %s %s ", rta_getattr_str(tb[TCA_KIND]), abuf); 210 q = get_qdisc_kind(RTA_DATA(tb[TCA_KIND])); 211 if (tb[TCA_OPTIONS]) { 213 q->print_copt(q, fp, tb[TCA_OPTIONS]); 221 if (tb[TCA_STATS] || tb[TCA_STATS2]) [all...] |
m_ematch.c | 366 static int print_ematch_seq(FILE *fd, struct rtattr **tb, int start, 375 if (tb[i] == NULL) 378 dlen = RTA_PAYLOAD(tb[i]) - sizeof(*hdr); 379 data = (void *) RTA_DATA(tb[i]) + sizeof(*hdr); 384 hdr = RTA_DATA(tb[i]); 399 if (print_ematch_seq(fd, tb, ref + 1, prefix + 1) < 0) 446 struct rtattr **tb; local 448 tb = malloc((hdr->nmatches + 1) * sizeof(struct rtattr *)); 449 if (tb == NULL) 453 if (parse_rtattr_nested(tb, hdr->nmatches, rta) < 0 469 struct rtattr *tb[TCA_EMATCH_TREE_MAX+1]; local [all...] |
m_csum.c | 181 struct rtattr *tb[TCA_CSUM_MAX + 1]; local 196 parse_rtattr_nested(tb, TCA_CSUM_MAX, arg); 198 if (tb[TCA_CSUM_PARMS] == NULL) { 202 sel = RTA_DATA(tb[TCA_CSUM_PARMS]); 232 if (tb[TCA_CSUM_TM]) { 233 struct tcf_t *tm = RTA_DATA(tb[TCA_CSUM_TM]);
|
m_nat.c | 171 struct rtattr *tb[TCA_NAT_MAX + 1]; local 180 parse_rtattr_nested(tb, TCA_NAT_MAX, arg); 182 if (tb[TCA_NAT_PARMS] == NULL) { 186 sel = RTA_DATA(tb[TCA_NAT_PARMS]); 199 if (tb[TCA_NAT_TM]) { 200 struct tcf_t *tm = RTA_DATA(tb[TCA_NAT_TM]);
|
tc_util.h | 83 extern void print_tcstats_attr(FILE *fp, struct rtattr *tb[], char *prefix, struct rtattr **xstats); 90 extern int tc_print_police(FILE *f, struct rtattr *tb); 97 struct rtattr *tb); 99 struct rtattr *tb); 100 extern int tc_print_action(FILE *f, const struct rtattr *tb); 101 extern int tc_print_ipt(FILE *f, const struct rtattr *tb);
|
tc_filter.c | 191 struct rtattr * tb[TCA_MAX+1]; local 205 memset(tb, 0, sizeof(tb)); 206 parse_rtattr(tb, TCA_MAX, TCA_RTA(t), len); 208 if (tb[TCA_KIND] == NULL) { 243 fprintf(fp, "%s ", rta_getattr_str(tb[TCA_KIND])); 244 q = get_filter_kind(RTA_DATA(tb[TCA_KIND])); 245 if (tb[TCA_OPTIONS]) { 247 q->print_fopt(q, fp, tb[TCA_OPTIONS], t->tcm_handle); 253 if (show_stats && (tb[TCA_STATS] || tb[TCA_STATS2])) [all...] |
/external/javassist/src/main/javassist/bytecode/stackmap/ |
MapMaker.java | 170 private void make(byte[] code, TypedBlock tb) 173 BasicBlock.Catch handlers = tb.toCatch; 179 int pos = tb.position; 180 int end = pos + tb.length; 184 if (tb.exit != null) { 185 for (int i = 0; i < tb.exit.length; i++) { 186 TypedBlock e = (TypedBlock)tb.exit[i]; 201 TypedBlock tb = (TypedBlock)handler.body; local 202 if (tb.alreadySet()) 203 mergeMap(tb, false) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
YuvTest.java | 124 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local 125 tb.setX(width); 126 tb.setY(height); 127 tb.setYuvFormat(android.graphics.ImageFormat.NV21); 128 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT); 167 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local 168 tb.setX(width); 169 tb.setY(height); 170 tb.setYuvFormat(android.graphics.ImageFormat.YV12); 171 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT) [all...] |
/external/qemu/audio/ |
audio.h | 154 __typeof (b) tb = b; \ 155 ((ta)>(tb)?(tb):(ta)); \ 160 __typeof (b) tb = b; \ 161 ((ta)<(tb)?(tb):(ta)); \
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
UnwindLevel1-gcc-ext.c | 222 void *tb, void *db) { 225 (void)tb; 228 fde, ob, tb, db); 240 void *ob, void *tb, 244 (void)tb; 247 "(%p,%p, %p, %p)\n", fde, ob, tb, db);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
report-include-statistics | 110 my $tb = keys %{ $totalIncludes{$fileb} }; 111 return $ta <=> $tb if $ta != $tb;
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 68 const uchar *tb = &tg[256]; local 69 const uchar *ta = &tb[256]; 74 out[2] = tb[in[2]];
|