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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/msan/
ftime.cc 9 struct timeb tb; local
10 int res = ftime(&tb);
12 assert(__msan_test_shadow(&tb, sizeof(tb)) == -1);
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 61 private void computeLiveness1(TypedBlock tb) {
62 if (tb.updating) {
64 computeLiveness1u(tb);
68 if (tb.inputs != null)
71 tb.updating = true;
72 byte[] usage = tb.localsUsage;
78 BasicBlock.Catch handlers = tb.toCatch;
89 if (tb.exit != null) {
90 for (int i = 0; i < tb.exit.length; i++) {
91 TypedBlock e = (TypedBlock)tb.exit[i]
196 TypedBlock tb = blocks[i]; local
213 TypedBlock tb = blocks[i]; local
    [all...]
  /external/chromium_org/third_party/jinja2/
debug.py 39 def __init__(self, tb):
40 self.tb = tb
50 tb_set_next(self.tb, next and next.tb or None)
60 return '__jinja_template__' in self.tb.tb_frame.f_globals
63 return getattr(self.tb, name)
91 for tb in self.frames:
93 prev_tb.set_next(tb)
94 prev_tb = tb
    [all...]
  /external/iproute2/tc/
f_tcindex.c 124 struct rtattr *tb[TCA_TCINDEX_MAX+1]; local
129 parse_rtattr_nested(tb, TCA_TCINDEX_MAX, opt);
132 if (tb[TCA_TCINDEX_HASH]) {
135 if (RTA_PAYLOAD(tb[TCA_TCINDEX_HASH]) < sizeof(hash))
137 hash = rta_getattr_u16(tb[TCA_TCINDEX_HASH]);
140 if (tb[TCA_TCINDEX_MASK]) {
143 if (RTA_PAYLOAD(tb[TCA_TCINDEX_MASK]) < sizeof(mask))
145 mask = rta_getattr_u16(tb[TCA_TCINDEX_MASK]);
148 if (tb[TCA_TCINDEX_SHIFT]) {
151 if (RTA_PAYLOAD(tb[TCA_TCINDEX_SHIFT]) < sizeof(shift)
    [all...]
q_dsmark.c 134 struct rtattr *tb[TCA_DSMARK_MAX+1]; local
137 memset(tb, 0, sizeof(tb));
138 parse_rtattr(tb, TCA_DSMARK_MAX, RTA_DATA(opt), RTA_PAYLOAD(opt));
139 if (tb[TCA_DSMARK_MASK]) {
140 if (!RTA_PAYLOAD(tb[TCA_DSMARK_MASK]))
143 rta_getattr_u8(tb[TCA_DSMARK_MASK]));
145 if (tb[TCA_DSMARK_VALUE]) {
146 if (!RTA_PAYLOAD(tb[TCA_DSMARK_VALUE]))
149 rta_getattr_u8(tb[TCA_DSMARK_VALUE]))
    [all...]
f_cgroup.c 86 struct rtattr *tb[TCA_CGROUP_MAX+1]; local
91 parse_rtattr_nested(tb, TCA_CGROUP_MAX, opt);
96 if (tb[TCA_CGROUP_EMATCHES])
97 print_ematch(f, tb[TCA_CGROUP_EMATCHES]);
99 if (tb[TCA_CGROUP_POLICE]) {
101 tc_print_police(f, tb[TCA_CGROUP_POLICE]);
104 if (tb[TCA_CGROUP_ACT])
105 tc_print_action(f, tb[TCA_CGROUP_ACT]);
f_basic.c 112 struct rtattr *tb[TCA_BASIC_MAX+1]; local
117 parse_rtattr_nested(tb, TCA_BASIC_MAX, opt);
122 if (tb[TCA_BASIC_CLASSID]) {
125 sprint_tc_classid(rta_getattr_u32(tb[TCA_BASIC_CLASSID]), b1));
128 if (tb[TCA_BASIC_EMATCHES])
129 print_ematch(f, tb[TCA_BASIC_EMATCHES]);
131 if (tb[TCA_BASIC_POLICE]) {
133 tc_print_police(f, tb[TCA_BASIC_POLICE]);
136 if (tb[TCA_BASIC_ACT]) {
137 tc_print_action(f, tb[TCA_BASIC_ACT])
    [all...]
f_fw.c 121 struct rtattr *tb[TCA_FW_MAX+1]; local
126 parse_rtattr_nested(tb, TCA_FW_MAX, opt);
128 if (handle || tb[TCA_FW_MASK]) {
132 if(tb[TCA_FW_MASK] &&
133 (mask = rta_getattr_u32(tb[TCA_FW_MASK])) != 0xFFFFFFFF)
139 if (tb[TCA_FW_CLASSID]) {
141 fprintf(f, "classid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_FW_CLASSID]), b1));
144 if (tb[TCA_FW_POLICE])
145 tc_print_police(f, tb[TCA_FW_POLICE]);
146 if (tb[TCA_FW_INDEV])
    [all...]
f_flow.c 272 struct rtattr *tb[TCA_FLOW_MAX+1]; local
280 parse_rtattr_nested(tb, TCA_FLOW_MAX, opt);
284 if (tb[TCA_FLOW_MODE]) {
285 __u32 mode = rta_getattr_u32(tb[TCA_FLOW_MODE]);
297 if (tb[TCA_FLOW_KEYS]) {
298 __u32 keymask = rta_getattr_u32(tb[TCA_FLOW_KEYS]);
311 if (tb[TCA_FLOW_MASK])
312 mask = rta_getattr_u32(tb[TCA_FLOW_MASK]);
313 if (tb[TCA_FLOW_XOR])
314 val = rta_getattr_u32(tb[TCA_FLOW_XOR])
    [all...]
f_route.c 136 struct rtattr *tb[TCA_ROUTE4_MAX+1]; local
142 parse_rtattr_nested(tb, TCA_ROUTE4_MAX, opt);
149 if (tb[TCA_ROUTE4_CLASSID]) {
151 fprintf(f, "flowid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_ROUTE4_CLASSID]), b1));
153 if (tb[TCA_ROUTE4_TO])
154 fprintf(f, "to %s ", rtnl_rtrealm_n2a(rta_getattr_u32(tb[TCA_ROUTE4_TO]), b1, sizeof(b1)));
155 if (tb[TCA_ROUTE4_FROM])
156 fprintf(f, "from %s ", rtnl_rtrealm_n2a(rta_getattr_u32(tb[TCA_ROUTE4_FROM]), b1, sizeof(b1)));
157 if (tb[TCA_ROUTE4_IIF])
158 fprintf(f, "fromif %s", ll_index_to_name(*(int*)RTA_DATA(tb[TCA_ROUTE4_IIF])))
    [all...]
  /external/libnl/lib/netfilter/
ct.c 107 struct nlattr *tb[CTA_IP_MAX+1]; local
111 err = nla_parse_nested(tb, CTA_IP_MAX, attr, ct_ip_policy);
115 if (tb[CTA_IP_V4_SRC]) {
116 addr = nl_addr_alloc_attr(tb[CTA_IP_V4_SRC], AF_INET);
124 if (tb[CTA_IP_V4_DST]) {
125 addr = nl_addr_alloc_attr(tb[CTA_IP_V4_DST], AF_INET);
133 if (tb[CTA_IP_V6_SRC]) {
134 addr = nl_addr_alloc_attr(tb[CTA_IP_V6_SRC], AF_INET6);
142 if (tb[CTA_IP_V6_DST]) {
143 addr = nl_addr_alloc_attr(tb[CTA_IP_V6_DST], AF_INET6)
162 struct nlattr *tb[CTA_PROTO_MAX+1]; local
192 struct nlattr *tb[CTA_TUPLE_MAX+1]; local
216 struct nlattr *tb[CTA_PROTOINFO_TCP_MAX+1]; local
233 struct nlattr *tb[CTA_PROTOINFO_MAX+1]; local
252 struct nlattr *tb[CTA_COUNTERS_MAX+1]; local
293 struct nlattr *tb[CTA_MAX+1]; local
    [all...]
  /external/chromium_org/media/formats/webm/
webm_tracks_parser_unittest.cc 52 TracksBuilder tb; local
53 tb.AddTextTrack(1, 1, kWebMCodecSubtitles, "", "");
55 const std::vector<uint8> buf = tb.Finish();
62 TracksBuilder tb; local
63 tb.AddTextTrack(1, 1, kWebMCodecSubtitles, "Spock", "");
65 const std::vector<uint8> buf = tb.Finish();
72 TracksBuilder tb; local
73 tb.AddTextTrack(1, 1, kWebMCodecSubtitles, "", "eng");
75 const std::vector<uint8> buf = tb.Finish();
82 TracksBuilder tb; local
92 TracksBuilder tb; local
125 TracksBuilder tb; local
154 TracksBuilder tb; local
    [all...]
  /external/qemu/
translate-all.c 45 /* make various TB consistency checks */
49 /* TB consistency checks only implemented for usermode emulation. */
123 static void tb_link_page(TranslationBlock *tb, tb_page_addr_t phys_pc,
137 int cpu_gen_code(CPUArchState *env, TranslationBlock *tb, int *gen_code_size_ptr)
153 gen_intermediate_code(env, tb);
156 gen_code_buf = tb->tc_ptr;
157 tb->tb_next_offset[0] = 0xffff;
158 tb->tb_next_offset[1] = 0xffff;
159 s->tb_next_offset = tb->tb_next_offset;
161 s->tb_jmp_offset = tb->tb_jmp_offset
255 TranslationBlock *tb; local
658 TranslationBlock *tb; local
762 TranslationBlock *tb; local
781 TranslationBlock *tb; local
955 TranslationBlock *tb; local
985 TranslationBlock *tb; local
1047 TranslationBlock *tb, *tb_next, *saved_tb; local
1193 TranslationBlock *tb; local
1362 TranslationBlock *tb; local
1410 TranslationBlock *tb; local
1502 TranslationBlock *tb; local
1577 TranslationBlock *tb; local
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstring.c 66 stringtable *tb = &G(L)->strt; local
69 if (newsize > tb->size) {
70 luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *);
71 for (i = tb->size; i < newsize; i++) tb->hash[i] = NULL;
74 for (i=0; i<tb->size; i++) {
75 GCObject *p = tb->hash[i];
76 tb->hash[i] = NULL;
80 gch(p)->next = tb->hash[h]; /* chain it *
119 stringtable *tb = &G(L)->strt; local
    [all...]
  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
Mandelbrot.java 31 Type.Builder tb = new Type.Builder(rs, Element.U8_4(rs)); local
32 tb.setX(mScript.get_gDimX());
33 tb.setY(mScript.get_gDimY());
34 mAllocationXY = Allocation.createTyped(rs, tb.create());
  /external/iproute2/genl/
ctrl.c 76 struct rtattr *tb[CTRL_ATTR_MAX + 1]; local
100 parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
102 if (tb[CTRL_ATTR_FAMILY_ID] == NULL) {
107 ret = rta_getattr_u16(tb[CTRL_ATTR_FAMILY_ID]);
138 struct rtattr *tb[CTRL_ATTR_OP_MAX + 1]; local
143 parse_rtattr_nested(tb, CTRL_ATTR_OP_MAX, arg);
144 if (tb[CTRL_ATTR_OP_ID]) {
145 __u32 *id = RTA_DATA(tb[CTRL_ATTR_OP_ID]);
149 if (tb[CTRL_ATTR_OP_FLAGS] && ctrl_ver >= 0x2) {
150 __u32 *fl = RTA_DATA(tb[CTRL_ATTR_OP_FLAGS])
159 struct rtattr *tb[CTRL_ATTR_MCAST_GRP_MAX + 1]; local
183 struct rtattr *tb[CTRL_ATTR_MAX + 1]; local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
TypeThunker.java 66 android.renderscript.Type.Builder tb = local
68 if (dx > 0) tb.setX(dx);
69 if (dy > 0) tb.setY(dy);
70 if (dz > 0) tb.setZ(dz);
71 if (dmip) tb.setMipmaps(dmip);
72 if (dfaces) tb.setFaces(dfaces);
73 if (yuv > 0) tb.setYuvFormat(yuv);
74 android.renderscript.Type nt = tb.create();
  /external/iproute2/ip/
iprule.c 53 struct rtattr * tb[FRA_MAX+1]; local
64 parse_rtattr(tb, FRA_MAX, RTM_RTA(r), len);
78 if (tb[FRA_PRIORITY])
79 fprintf(fp, "%u:\t", *(unsigned*)RTA_DATA(tb[FRA_PRIORITY]));
86 if (tb[FRA_SRC]) {
89 RTA_PAYLOAD(tb[FRA_SRC]),
90 RTA_DATA(tb[FRA_SRC]),
96 RTA_PAYLOAD(tb[FRA_SRC]),
97 RTA_DATA(tb[FRA_SRC]),
107 if (tb[FRA_DST])
390 struct rtattr * tb[FRA_MAX+1]; local
    [all...]
link_gre.c 51 struct rtattr *tb[IFLA_MAX + 1]; local
87 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(&req.i), len);
89 if (!tb[IFLA_LINKINFO])
92 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb[IFLA_LINKINFO]);
269 static void gre_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
278 if (!tb)
281 if (tb[IFLA_GRE_REMOTE]) {
282 unsigned addr = rta_getattr_u32(tb[IFLA_GRE_REMOTE]);
290 if (tb[IFLA_GRE_LOCAL]) {
291 unsigned addr = rta_getattr_u32(tb[IFLA_GRE_LOCAL])
    [all...]
iplink_macvlan.c 71 static void macvlan_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
75 if (!tb)
78 if (!tb[IFLA_MACVLAN_MODE] ||
79 RTA_PAYLOAD(tb[IFLA_MACVLAN_MODE]) < sizeof(__u32))
82 mode = rta_getattr_u32(tb[IFLA_VLAN_ID]);
iplink_macvtap.c 68 static void macvtap_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
72 if (!tb)
75 if (!tb[IFLA_MACVLAN_MODE] ||
76 RTA_PAYLOAD(tb[IFLA_MACVLAN_MODE]) < sizeof(__u32))
79 mode = rta_getattr_u32(tb[IFLA_VLAN_ID]);
iplink_vlan.c 176 static void vlan_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
179 if (!tb)
182 if (!tb[IFLA_VLAN_ID] ||
183 RTA_PAYLOAD(tb[IFLA_VLAN_ID]) < sizeof(__u16))
186 fprintf(f, "id %u ", rta_getattr_u16(tb[IFLA_VLAN_ID]));
188 if (tb[IFLA_VLAN_FLAGS]) {
189 if (RTA_PAYLOAD(tb[IFLA_VLAN_FLAGS]) < sizeof(*flags))
191 flags = RTA_DATA(tb[IFLA_VLAN_FLAGS]);
194 if (tb[IFLA_VLAN_INGRESS_QOS])
195 vlan_print_map(f, "ingress-qos-map", tb[IFLA_VLAN_INGRESS_QOS])
    [all...]
ipprefix.c 41 struct rtattr * tb[RTA_MAX+1]; local
70 parse_rtattr(tb, RTA_MAX, RTM_RTA(prefix), len);
74 if (tb[PREFIX_ADDRESS]) {
78 pfx = (struct in6_addr *)RTA_DATA(tb[PREFIX_ADDRESS]);
93 if (tb[PREFIX_CACHEINFO]) {
95 pc = (struct prefix_cacheinfo *)RTA_DATA(tb[PREFIX_CACHEINFO]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
traceback.py 46 def print_tb(tb, limit=None, file=None):
47 """Print up to 'limit' stack trace entries from the traceback 'tb'.
60 while tb is not None and (limit is None or n < limit):
61 f = tb.tb_frame
62 lineno = tb.tb_lineno
71 tb = tb.tb_next
74 def format_tb(tb, limit = None):
76 return format_list(extract_tb(tb, limit))
78 def extract_tb(tb, limit = None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
traceback.py 46 def print_tb(tb, limit=None, file=None):
47 """Print up to 'limit' stack trace entries from the traceback 'tb'.
60 while tb is not None and (limit is None or n < limit):
61 f = tb.tb_frame
62 lineno = tb.tb_lineno
71 tb = tb.tb_next
74 def format_tb(tb, limit = None):
76 return format_list(extract_tb(tb, limit))
78 def extract_tb(tb, limit = None)
    [all...]

Completed in 315 milliseconds

1 2 3 4 5 6 7 8 91011>>