HomeSort by relevance Sort by last modified time
    Searched refs:tb (Results 101 - 125 of 1655) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
73 if "tb" in results:
74 tb = results["tb"].clone()
75 tb.prefix = u""
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_raise.py 35 raise_stmt< 'raise' exc=any [',' val=any [',' tb=any]] >
73 if "tb" in results:
74 tb = results["tb"].clone()
75 tb.prefix = u""
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
  /external/iproute2/tc/
q_netem.c 518 struct rtattr *tb[TCA_NETEM_MAX+1]; local
519 parse_rtattr(tb, TCA_NETEM_MAX, RTA_DATA(opt) + sizeof(qopt),
522 if (tb[TCA_NETEM_CORR]) {
523 if (RTA_PAYLOAD(tb[TCA_NETEM_CORR]) < sizeof(*cor))
525 cor = RTA_DATA(tb[TCA_NETEM_CORR]);
527 if (tb[TCA_NETEM_REORDER]) {
528 if (RTA_PAYLOAD(tb[TCA_NETEM_REORDER]) < sizeof(*reorder))
530 reorder = RTA_DATA(tb[TCA_NETEM_REORDER]);
532 if (tb[TCA_NETEM_CORRUPT]) {
533 if (RTA_PAYLOAD(tb[TCA_NETEM_CORRUPT]) < sizeof(*corrupt)
    [all...]
q_hfsc.c 240 struct rtattr *tb[TCA_HFSC_MAX+1]; local
246 parse_rtattr_nested(tb, TCA_HFSC_MAX, opt);
248 if (tb[TCA_HFSC_RSC]) {
249 if (RTA_PAYLOAD(tb[TCA_HFSC_RSC]) < sizeof(*rsc))
252 rsc = RTA_DATA(tb[TCA_HFSC_RSC]);
254 if (tb[TCA_HFSC_FSC]) {
255 if (RTA_PAYLOAD(tb[TCA_HFSC_FSC]) < sizeof(*fsc))
258 fsc = RTA_DATA(tb[TCA_HFSC_FSC]);
260 if (tb[TCA_HFSC_USC]) {
261 if (RTA_PAYLOAD(tb[TCA_HFSC_USC]) < sizeof(*usc)
    [all...]
q_choke.c 169 struct rtattr *tb[TCA_CHOKE_MAX+1]; local
176 parse_rtattr_nested(tb, TCA_CHOKE_MAX, opt);
178 if (tb[TCA_CHOKE_PARMS] == NULL)
180 qopt = RTA_DATA(tb[TCA_CHOKE_PARMS]);
181 if (RTA_PAYLOAD(tb[TCA_CHOKE_PARMS]) < sizeof(*qopt))
183 if (tb[TCA_CHOKE_MAX_P] &&
184 RTA_PAYLOAD(tb[TCA_CHOKE_MAX_P]) >= sizeof(__u32))
185 max_P = rta_getattr_u32(tb[TCA_CHOKE_MAX_P]);
q_red.c 159 struct rtattr *tb[TCA_RED_MAX + 1]; local
169 parse_rtattr_nested(tb, TCA_RED_MAX, opt);
171 if (tb[TCA_RED_PARMS] == NULL)
173 qopt = RTA_DATA(tb[TCA_RED_PARMS]);
174 if (RTA_PAYLOAD(tb[TCA_RED_PARMS]) < sizeof(*qopt))
177 if (tb[TCA_RED_MAX_P] &&
178 RTA_PAYLOAD(tb[TCA_RED_MAX_P]) >= sizeof(__u32))
179 max_P = rta_getattr_u32(tb[TCA_RED_MAX_P]);
f_rsvp.c 318 struct rtattr *tb[TCA_RSVP_MAX+1]; local
324 parse_rtattr_nested(tb, TCA_RSVP_MAX, opt);
329 if (tb[TCA_RSVP_PINFO]) {
330 if (RTA_PAYLOAD(tb[TCA_RSVP_PINFO]) < sizeof(*pinfo))
333 pinfo = RTA_DATA(tb[TCA_RSVP_PINFO]);
336 if (tb[TCA_RSVP_CLASSID]) {
339 fprintf(f, "flowid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_RSVP_CLASSID]), b1));
341 fprintf(f, "tunnel %d skip %d ", rta_getattr_u32(tb[TCA_RSVP_CLASSID]), pinfo->tunnelhdr);
345 if (tb[TCA_RSVP_DST]) {
348 if (inet_ntop(family, RTA_DATA(tb[TCA_RSVP_DST]), buf, sizeof(buf)) == 0
    [all...]
q_sfb.c 146 struct rtattr *tb[__TCA_SFB_MAX]; local
152 parse_rtattr_nested(tb, TCA_SFB_MAX, opt);
153 if (tb[TCA_SFB_PARMS] == NULL)
155 qopt = RTA_DATA(tb[TCA_SFB_PARMS]);
156 if (RTA_PAYLOAD(tb[TCA_SFB_PARMS]) < sizeof(*qopt))
  /external/libnl/lib/route/cls/
cgroup.c 47 struct nlattr *tb[TCA_CGROUP_MAX + 1]; local
50 err = tca_parse(tb, TCA_CGROUP_MAX, (struct rtnl_tca *) cls,
55 if (tb[TCA_CGROUP_EMATCHES]) {
56 if ((err = rtnl_ematch_parse(tb[TCA_CGROUP_EMATCHES],
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
GroupTest.java 66 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
67 tb.setX(mWidth);
68 tb.setY(mHeight);
69 Type connect = tb.create();
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
GroupTest.java 66 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
67 tb.setX(mWidth);
68 tb.setY(mHeight);
69 Type connect = tb.create();
  /frameworks/rs/tests/cppbasic-getpointer/
compute.cpp 28 Type::Builder tb(rs, e);
29 tb.setX(DIMX);
30 tb.setY(DIMY);
31 sp<const Type> t = tb.create();
  /external/qemu/
cpu-exec.c 59 /* exit the current TB from a signal handler. The host registers are
97 TranslationBlock *tb; local
100 We only end up here when an existing TB is too long. */
104 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags,
106 env->current_tb = tb;
108 next_tb = tcg_qemu_tb_exec(env, tb->tc_ptr);
113 the TB starts executing. */
114 cpu_pc_from_tb(env, tb);
116 tb_phys_invalidate(tb, -1);
117 tb_free(tb);
125 TranslationBlock *tb, **ptb1; local
176 TranslationBlock *tb; local
238 TranslationBlock *tb; local
732 TranslationBlock *tb; local
    [all...]
  /external/libnl/lib/route/
tc.c 36 int tca_parse(struct nlattr **tb, int maxattr, struct rtnl_tca *g,
41 return nla_parse(tb, maxattr,
45 /* Ugly but tb[] must be in a defined state even if no
47 memset(tb, 0, sizeof(struct nlattr *) * (maxattr + 1));
60 struct nlattr *tb[TCA_MAX + 1]; local
64 err = nlmsg_parse(n, sizeof(*tm), tb, TCA_MAX, tc_policy);
68 if (tb[TCA_KIND] == NULL)
71 nla_strlcpy(g->tc_kind, tb[TCA_KIND], TCKINDSIZ);
83 if (tb[TCA_OPTIONS]) {
84 g->tc_opts = nl_data_alloc_attr(tb[TCA_OPTIONS])
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211.c 715 struct nlattr *tb[CTRL_ATTR_MAX + 1]; local
720 nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
722 if (!tb[CTRL_ATTR_MCAST_GROUPS])
725 nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
785 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
789 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
792 if (tb[NL80211_ATTR_WIPHY])
793 info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
795 if (tb[NL80211_ATTR_IFTYPE])
796 info->nlmode = nla_get_u32(tb[NL80211_ATTR_IFTYPE])
930 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
2214 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
2292 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
2359 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
3165 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
3205 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
3243 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
3753 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
5333 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
9167 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
9339 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
9486 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
10093 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
10340 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
10813 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
11186 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
12197 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
    [all...]
  /bionic/libc/bionic/
ndk_cruft.cpp 280 extern "C" int ftime(struct timeb* tb) {
287 tb->time = tv.tv_sec;
288 tb->millitm = (tv.tv_usec + 500) / 1000;
290 if (tb->millitm == 1000) {
291 ++tb->time;
292 tb->millitm = 0;
295 tb->timezone = tz.tz_minuteswest;
296 tb->dstflag = tz.tz_dsttime;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptTest.java 50 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); local
51 Allocation a = Allocation.createTyped(mRS, tb.create());
Intrinsic3DLut.java 66 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local
67 tb.setX(sx);
68 tb.setY(sy);
69 tb.setZ(sz);
70 Type t = tb.create();
IntrinsicBlur.java 36 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS)); local
37 tb.setX(w);
38 tb.setY(h);
39 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
40 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
  /external/chromium_org/ppapi/generators/
generator.py 51 typeinfo, value, tb = sys.exc_info()
52 traceback.print_exception(typeinfo, value, tb)
  /external/libnl/lib/route/sch/
cbq.c 92 struct nlattr *tb[TCA_CBQ_MAX + 1]; local
96 err = tca_parse(tb, TCA_CBQ_MAX, tca, cbq_policy);
104 nla_memcpy(&cbq->cbq_lss, tb[TCA_CBQ_LSSOPT], sizeof(cbq->cbq_lss));
105 nla_memcpy(&cbq->cbq_rate, tb[TCA_CBQ_RATE], sizeof(cbq->cbq_rate));
106 nla_memcpy(&cbq->cbq_wrr, tb[TCA_CBQ_WRROPT], sizeof(cbq->cbq_wrr));
107 nla_memcpy(&cbq->cbq_fopt, tb[TCA_CBQ_FOPT], sizeof(cbq->cbq_fopt));
108 nla_memcpy(&cbq->cbq_ovl, tb[TCA_CBQ_OVL_STRATEGY],
110 nla_memcpy(&cbq->cbq_police, tb[TCA_CBQ_POLICE],
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dis.py 51 def distb(tb=None):
53 if tb is None:
55 tb = sys.last_traceback
58 while tb.tb_next: tb = tb.tb_next
59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dis.py 51 def distb(tb=None):
53 if tb is None:
55 tb = sys.last_traceback
58 while tb.tb_next: tb = tb.tb_next
59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
  /external/speex/libspeex/
jitter.c 90 static void tb_init(struct TimingBuffer *tb)
92 tb->filled = 0;
93 tb->curr_count = 0;
97 static void tb_add(struct TimingBuffer *tb, spx_int16_t timing)
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1])
103 tb->curr_count++;
110 while (pos<tb->filled && timing >= tb->timing[pos]
188 struct TimingBuffer *tb; local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
MimeUtilityTest.java 366 TextBody tb = new TextBody(theText); local
371 p.setBody(tb);
377 p.setBody(tb);
383 p.setBody(tb);
406 TextBody tb = new TextBody(UNICODE_EXPECT); local
411 p.setBody(tb);
418 p.setBody(tb);
425 p.setBody(tb);
432 p.setBody(tb);
443 p.setBody(tb);
    [all...]

Completed in 1223 milliseconds

1 2 3 45 6 7 8 91011>>