HomeSort by relevance Sort by last modified time
    Searched refs:tb (Results 126 - 150 of 1413) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/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());
Histogram.java 50 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); local
51 tb.setX(256).setY(steps);
52 Type t = tb.create();
  /external/iproute2/ip/
ipaddrlabel.c 61 struct rtattr *tb[IFAL_MAX+1]; local
71 parse_rtattr(tb, IFAL_MAX, IFAL_RTA(ifal), len);
76 if (tb[IFAL_ADDRESS]) {
79 RTA_PAYLOAD(tb[IFAL_ADDRESS]),
80 RTA_DATA(tb[IFAL_ADDRESS]),
88 if (tb[IFAL_LABEL] && RTA_PAYLOAD(tb[IFAL_LABEL]) == sizeof(uint32_t)) {
90 memcpy(&label, RTA_DATA(tb[IFAL_LABEL]), sizeof(label));
197 struct rtattr * tb[IFAL_MAX+1]; local
203 parse_rtattr(tb, IFAL_MAX, RTM_RTA(r), len)
    [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 198 struct rtattr * tb[NDA_MAX+1]; local
236 parse_rtattr(tb, NDA_MAX, NDA_RTA(r), n->nlmsg_len - NLMSG_LENGTH(sizeof(*r)));
238 if (tb[NDA_DST]) {
243 memcpy(&dst.data, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST]));
248 if (filter.unused_only && tb[NDA_CACHEINFO]) {
249 struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]);
275 if (tb[NDA_DST]) {
278 RTA_PAYLOAD(tb[NDA_DST]),
279 RTA_DATA(tb[NDA_DST])
    [all...]
  /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/iw/
mpath.c 29 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
43 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
52 if (!tb[NL80211_ATTR_MPATH_INFO]) {
57 tb[NL80211_ATTR_MPATH_INFO],
63 mac_addr_n2a(dst, nla_data(tb[NL80211_ATTR_MAC]));
64 mac_addr_n2a(next_hop, nla_data(tb[NL80211_ATTR_MPATH_NEXT_HOP]));
65 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
  /external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
collector.py 242 def collectSupplement(self, supplement, tb):
261 def collectLine(self, tb, extra_data):
262 f = tb.tb_frame
263 lineno = tb.tb_lineno
281 data['tbid'] = id(tb)
298 data['supplement'] = self.collectSupplement(supp, tb)
332 def collectException(self, etype, value, tb, limit=None):
342 while tb is not None and (limit is None or n < limit):
343 if tb.tb_frame.f_locals.get('__exception_formatter__'):
347 data = self.collectLine(tb, extra_data
    [all...]
  /external/iproute2/tc/
m_xt.c 294 struct rtattr *tb[TCA_IPT_MAX + 1]; local
307 parse_rtattr_nested(tb, TCA_IPT_MAX, arg);
309 if (tb[TCA_IPT_TABLE] == NULL) {
313 rta_getattr_str(tb[TCA_IPT_TABLE]));
316 if (tb[TCA_IPT_HOOK] == NULL) {
321 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]);
325 if (tb[TCA_IPT_TARG] == NULL) {
330 t = RTA_DATA(tb[TCA_IPT_TARG]);
360 if (tb[TCA_IPT_INDEX] == NULL) {
364 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...]
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...]
q_gred.c 272 struct rtattr *tb[TCA_GRED_MAX + 1]; local
285 parse_rtattr_nested(tb, TCA_GRED_MAX, opt);
287 if (tb[TCA_GRED_PARMS] == NULL)
290 if (tb[TCA_GRED_MAX_P] &&
291 RTA_PAYLOAD(tb[TCA_GRED_MAX_P]) >= sizeof(__u32) * MAX_DPs)
292 max_p = RTA_DATA(tb[TCA_GRED_MAX_P]);
294 if (tb[TCA_GRED_LIMIT] &&
295 RTA_PAYLOAD(tb[TCA_GRED_LIMIT]) == sizeof(__u32))
296 limit = RTA_DATA(tb[TCA_GRED_LIMIT]);
298 sopt = RTA_DATA(tb[TCA_GRED_DPS])
    [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 84 extern void print_tcstats_attr(FILE *fp, struct rtattr *tb[], char *prefix, struct rtattr **xstats);
91 extern int tc_print_police(FILE *f, struct rtattr *tb);
98 struct rtattr *tb);
100 struct rtattr *tb);
101 extern int tc_print_action(FILE *f, const struct rtattr *tb);
102 extern int tc_print_ipt(FILE *f, const struct rtattr *tb);
  /external/iproute2/bridge/
link.c 105 struct rtattr * tb[IFLA_MAX+1]; local
120 parse_rtattr_flags(tb, IFLA_MAX, IFLA_RTA(ifi), len, NLA_F_NESTED);
122 if (tb[IFLA_IFNAME] == NULL) {
131 tb[IFLA_IFNAME] ? rta_getattr_str(tb[IFLA_IFNAME]) : "<nil>");
133 if (tb[IFLA_OPERSTATE])
134 print_operstate(fp, rta_getattr_u8(tb[IFLA_OPERSTATE]));
136 if (tb[IFLA_LINK]) {
138 int iflink = rta_getattr_u32(tb[IFLA_LINK]);
149 if (tb[IFLA_MTU]
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
configure     [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/rscpp/src/android/cts/rscpp/
RSYuvTest.java 121 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local
122 tb.setX(width);
123 tb.setY(height);
124 tb.setYuvFormat(android.graphics.ImageFormat.YV12);
125 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT);
160 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); local
161 tb.setX(width);
162 tb.setY(height);
163 tb.setYuvFormat(android.graphics.ImageFormat.NV21);
164 Allocation ta = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT)
    [all...]
  /external/iproute2/tipc/
msg.c 25 const struct nlattr **tb = data; local
28 tb[type] = attr;
35 struct nlattr *tb[CTRL_ATTR_MAX + 1] = {}; local
39 mnl_attr_parse(nlh, sizeof(*genl), parse_attrs, tb);
40 if (!tb[CTRL_ATTR_FAMILY_ID])
43 *id = mnl_attr_get_u16(tb[CTRL_ATTR_FAMILY_ID]);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
LaunchClip.java 68 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); local
69 tb.setX(mDimX);
70 if (mDimY > 0) tb.setY(mDimY);
71 if (mDimZ > 0) tb.setZ(mDimZ);
72 if (mHasFaces) tb.setFaces(true);
73 if (mHasLods) tb.setMipmaps(true);
74 //if (mDimA0 != 0) tb.setArray(0, mDimA0);
75 //if (mDimA1 != 0) tb.setArray(1, mDimA1);
76 //if (mDimA2 != 0) tb.setArray(2, mDimA2);
77 //if (mDimA3 != 0) tb.setArray(3, mDimA3)
152 Type.Builder tb = new Type.Builder(mRS, base.getType().getElement()); local
    [all...]
  /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]];

Completed in 852 milliseconds

1 2 3 4 56 7 8 91011>>