/external/iproute2/tc/ |
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...] |
q_qfq.c | 96 struct rtattr *tb[TCA_QFQ_MAX + 1]; local 101 parse_rtattr_nested(tb, TCA_QFQ_MAX, opt); 103 if (tb[TCA_QFQ_WEIGHT]) { 105 rta_getattr_u32(tb[TCA_QFQ_WEIGHT])); 108 if (tb[TCA_QFQ_LMAX]) { 110 rta_getattr_u32(tb[TCA_QFQ_LMAX]));
|
m_skbedit.c | 163 struct rtattr *tb[TCA_SKBEDIT_MAX + 1]; local 172 parse_rtattr_nested(tb, TCA_SKBEDIT_MAX, arg); 174 if (tb[TCA_SKBEDIT_PARMS] == NULL) { 181 if (tb[TCA_SKBEDIT_QUEUE_MAPPING] != NULL) { 182 queue_mapping = RTA_DATA(tb[TCA_SKBEDIT_QUEUE_MAPPING]); 185 if (tb[TCA_SKBEDIT_PRIORITY] != NULL) { 186 priority = RTA_DATA(tb[TCA_SKBEDIT_PRIORITY]); 189 if (tb[TCA_SKBEDIT_MARK] != NULL) { 190 mark = RTA_DATA(tb[TCA_SKBEDIT_MARK]); 195 if (tb[TCA_SKBEDIT_TM]) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/light/ |
TestTangentGen.java | 123 FloatBuffer tb = BufferUtils.createFloatBuffer(3*3*2); local 124 tb.rewind(); 125 tb.put(new float[]{0,0}); tb.put(new float[]{0.5f,0}); tb.put(new float[]{1,0}); 126 tb.put(new float[]{0,0.5f}); tb.put(new float[]{0.5f,0.5f}); tb.put(new float[]{1,0.5f}); 127 tb.put(new float[]{0,1}); tb.put(new float[]{0.5f,1}); tb.put(new float[]{1,1}) [all...] |
/external/iproute2/ip/ |
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]);
|
iplink_can.c | 196 static void can_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[]) 198 if (!tb) 201 if (tb[IFLA_CAN_CTRLMODE]) { 202 struct can_ctrlmode *cm = RTA_DATA(tb[IFLA_CAN_CTRLMODE]); 208 if (tb[IFLA_CAN_STATE]) { 209 int *state = RTA_DATA(tb[IFLA_CAN_STATE]); 215 if (tb[IFLA_CAN_BERR_COUNTER]) { 217 RTA_DATA(tb[IFLA_CAN_BERR_COUNTER]); 222 if (tb[IFLA_CAN_RESTART_MS]) { 223 __u32 *restart_ms = RTA_DATA(tb[IFLA_CAN_RESTART_MS]) [all...] |
/frameworks/rs/tests/cppbasic/ |
compute.cpp | 21 Type::Builder tb(rs, e); 22 tb.setX(128); 23 tb.setY(128); 24 sp<const Type> t = tb.create(); 70 Type::Builder tb(rs, e); 71 tb.setX(xDim); 72 tb.setY(yDim); 73 sp<const Type> t = tb.create();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 109 type, value, tb = sys.exc_info() 115 traceback.print_exception(type, value, tb, file=sys.__stderr__) 159 typ, val, tb = excinfo = sys.exc_info() 161 tbe = traceback.extract_tb(tb) 171 def cleanup_traceback(tb, exclude): 172 "Remove excluded traces from beginning/end of tb; get cached lines" 173 orig_tb = tb[:] 174 while tb: 176 if tb[0][0].count(rpcfile): 177 break # found an exclude, break for: and delete tb[0 [all...] |
StackViewer.py | 8 def StackBrowser(root, flist=None, tb=None, top=None): 14 item = StackTreeItem(flist, tb) 20 def __init__(self, flist=None, tb=None): 22 self.stack = self.get_stack(tb) 25 def get_stack(self, tb): 26 if tb is None: 27 tb = sys.last_traceback 29 if tb and tb.tb_frame is None: 30 tb = tb.tb_nex [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 109 type, value, tb = sys.exc_info() 115 traceback.print_exception(type, value, tb, file=sys.__stderr__) 159 typ, val, tb = excinfo = sys.exc_info() 161 tbe = traceback.extract_tb(tb) 171 def cleanup_traceback(tb, exclude): 172 "Remove excluded traces from beginning/end of tb; get cached lines" 173 orig_tb = tb[:] 174 while tb: 176 if tb[0][0].count(rpcfile): 177 break # found an exclude, break for: and delete tb[0 [all...] |
StackViewer.py | 8 def StackBrowser(root, flist=None, tb=None, top=None): 14 item = StackTreeItem(flist, tb) 20 def __init__(self, flist=None, tb=None): 22 self.stack = self.get_stack(tb) 25 def get_stack(self, tb): 26 if tb is None: 27 tb = sys.last_traceback 29 if tb and tb.tb_frame is None: 30 tb = tb.tb_nex [all...] |
/frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/ |
LaunchTest.java | 36 Type.Builder tb = new Type.Builder(rs, Element.U8(rs)); local 37 tb.setX(dim); 38 tb.setY(dim); 39 mAllocationXY = Allocation.createTyped(rs, tb.create());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
types.py | 69 tb = sys.exc_info()[2] variable 70 TracebackType = type(tb) 71 FrameType = type(tb.tb_frame) 72 del tb
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
types.py | 69 tb = sys.exc_info()[2] variable 70 TracebackType = type(tb) 71 FrameType = type(tb.tb_frame) 72 del tb
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ColorCube.java | 47 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local 48 tb.setX(sx); 49 tb.setY(sy); 50 tb.setZ(sz); 51 Type t = tb.create();
|
Grain.java | 73 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 74 tb.setX(noiseW); 75 tb.setY(noiseH); 76 mNoise = Allocation.createTyped(mRS, tb.create()); 77 mNoise2 = Allocation.createTyped(mRS, tb.create());
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Blur25G.java | 61 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 62 tb.setX(width); 63 tb.setY(height); 64 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 65 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
ColorCube.java | 39 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); local 40 tb.setX(sx); 41 tb.setY(sy); 42 tb.setZ(sz); 43 Type t = tb.create();
|
Grain.java | 68 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 69 tb.setX(noiseW); 70 tb.setY(noiseH); 71 mNoise = Allocation.createTyped(mRS, tb.create()); 72 mNoise2 = Allocation.createTyped(mRS, tb.create());
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
Grain.java | 73 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS)); local 74 tb.setX(noiseW); 75 tb.setY(noiseH); 76 mNoise = Allocation.createTyped(mRS, tb.create()); 77 mNoise2 = Allocation.createTyped(mRS, tb.create());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
result.py | 146 exctype, value, tb = err 148 while tb and self._is_relevant_tb_level(tb): 149 tb = tb.tb_next 152 length = self._count_relevant_tb_levels(tb) 153 msgLines = traceback.format_exception(exctype, value, tb, length) 155 msgLines = traceback.format_exception(exctype, value, tb) 170 def _is_relevant_tb_level(self, tb): 171 return '__unittest' in tb.tb_frame.f_global [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 154 exctype, value, tb = err 156 while tb and self._is_relevant_tb_level(tb): 157 tb = tb.tb_next 161 length = self._count_relevant_tb_levels(tb) 162 msgLines = traceback.format_exception(exctype, value, tb, length) 164 msgLines = traceback.format_exception(exctype, value, tb) 180 def _is_relevant_tb_level(self, tb): 181 return '__unittest' in tb.tb_frame.f_global [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 154 exctype, value, tb = err 156 while tb and self._is_relevant_tb_level(tb): 157 tb = tb.tb_next 161 length = self._count_relevant_tb_levels(tb) 162 msgLines = traceback.format_exception(exctype, value, tb, length) 164 msgLines = traceback.format_exception(exctype, value, tb) 180 def _is_relevant_tb_level(self, tb): 181 return '__unittest' in tb.tb_frame.f_global [all...] |
/external/iproute2/lib/ |
ll_map.c | 53 struct rtattr *tb[IFLA_MAX+1]; local 61 memset(tb, 0, sizeof(tb)); 62 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), IFLA_PAYLOAD(n)); 63 if (tb[IFLA_IFNAME] == NULL) 82 if (tb[IFLA_ADDRESS]) { 84 im->alen = alen = RTA_PAYLOAD(tb[IFLA_ADDRESS]); 87 memcpy(im->addr, RTA_DATA(tb[IFLA_ADDRESS]), alen); 92 strcpy(im->name, RTA_DATA(tb[IFLA_IFNAME]));
|
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/ |
RsYuv.java | 77 Type.Builder tb = new Type.Builder(mRS, Element.RGBA_8888(mRS)); local 78 tb.setX(mWidth); 79 tb.setY(mHeight); 80 Type t = tb.create(); 85 tb = new Type.Builder(mRS, Element.createPixel(mRS, Element.DataType.UNSIGNED_8, Element.DataKind.PIXEL_YUV)); 86 tb.setX(mWidth); 87 tb.setY(mHeight); 88 tb.setYuvFormat(android.graphics.ImageFormat.NV21); 89 mAllocationIn = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT);
|