HomeSort by relevance Sort by last modified time
    Searched refs:DEB (Results 1 - 21 of 21) sorted by null

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/include/
viddec_debug.h 9 #define DEB OS_PRINT
11 // #define DEB(format, args...)
14 #define CDEB(a, format, args...) if(a != 0) {DEB(format, ##args);}
16 #define DEB(format, args...)
24 #define DEB(format, args...)
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_parse.c 27 //DEB("entering is_wkld_done: next_sc: 0x%x, sc_seen: %d\n", next_sc, parser->sc_seen);
81 //DEB("exiting is_wkld_done: next_sc: 0x%x, sc_seen: %d, err: %d, fr_bnd:%d, force:%d\n",
145 DEB("Start code not found\n");
155 DEB("current_sc=0x%.8X, prev_sc=0x%x\n", sc, cxt->prev_sc);
163 DEB("MP4_VISUAL_OBJECT_SEQUENCE_SC: \n");
173 DEB("MP4_USER_DATA_SC: \n");
180 DEB("MP4_GROUP_OF_VOP_SC:0x%.8X\n", status);
191 DEB("MP4_VISUAL_OBJECT_SC: status=%.8X\n", status);
204 DEB("MP4_VIDEO_OBJECT_PLANE_SC: status=0x%.8X\n", status);
218 DEB("MP4_VIDEO_OBJECT_LAYER_MIN_SC:status=0x%.8X\n", status)
    [all...]
viddec_mp4_videoobjectlayer.c 115 DEB("Warning: mp4_Parse_VideoObject:vol_control_parameters.chroma_format != 4:2:0\n");
131 DEB("Error: mp4_Parse_VideoObject:vidObjLay->VOLControlParameters.bit_rate = 0\n");
145 DEB("Error: mp4_Parse_VideoObject:vidObjLay->VOLControlParameters.vbv_buffer_size = 0\n");
193 DEB("ERROR: mp4_Parse_VideoObject:sprite_enable = %.2X\n", sprite_enable);
205 DEB("Error: mp4_Parse_VideoObject:bad no_of_sprite_warping_points %d\n",
213 DEB("Error: mp4_Parse_VideoObject:sprite_brightness_change should be 0 for GMC sprites\n");
220 DEB("ERROR: mp4_Parse_VideoObject:sprite_enable = %.2X\n", sprite_enable);
308 DEB("Error: mp4_Parse_VideoObject: sadct_disable, not supp\n");
319 DEB("Error: mp4_Parse_VideoObject: not_8_bit, not supp\n");
332 DEB("Error: mp4_Parse_VideoObject: GRAYSCALE, not supp\n")
    [all...]
viddec_mp4_videoobjectplane.c 27 DEB("Error:mp4_Parse_GroupOfVideoObjectPlane: Invalid marker\n");
270 DEB("Error: mp4_Parse_VideoObjectPlane: New pred in vidObjPlane is not supported\n");
295 DEB("Error: mp4_Parse_VideoObjectPlane: Reduced Resolution vidObjPlane is not supported\n");
377 DEB("Error: vop_fcode_forward == 0\n");
389 DEB("Error: vop_fcode_backward == 0\n");
viddec_mp4_visualobject.c 66 //DEB("Entering mp4_set_hdr_bitstream_error: bs_err: 0x%x, hdr: %d, parse_status: %d\n",
89 //DEB("Exiting mp4_set_hdr_bitstream_error: bs_err: 0x%x\n", parser->bitstream_error);
163 DEB("Warning: Unsupported visual_object_verid\n");
175 DEB("Error: Unsupported object: visual_object_type != video ID\n");
230 DEB("ParseUser-prev_sc: 0x%x\n", parser->prev_sc);
viddec_mp4_shortheader.c 44 DEB("Error: Bad value for VideoPlaneWithShortHeader.source_format\n");
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse_ipic_adv.c 179 DEB("Error parsing I field \n");
202 DEB("Error parsing I field \n");
223 DEB("Error parsing I field \n");
250 DEB("Error parsing I field \n");
vc1parse.c 68 DEB("rcv: beforemod: res: %dx%d\n", md->width, md->height);
74 DEB("rcv: res: %dx%d\n", md->width, md->height);
205 DEB("md: res: %dx%d\n", md->width, md->height);
206 DEB("sh: dispres: %dx%d\n", sh.seq_disp_size.DISP_HORIZ_SIZE, sh.seq_disp_size.DISP_VERT_SIZE);
381 DEB("ep: res: %dx%d\n", ep.ep_size.CODED_WIDTH, ep.ep_size.CODED_HEIGHT);
382 DEB("md: after ep: res: %dx%d\n", md->width, md->height);
viddec_vc1_parse.c 1 #include "viddec_fw_debug.h" // For DEB
94 DEB("START_CODE = %02x\n", sc);
242 DEB("SC = %02x - unhandled\n", sc );
308 DEB("sc: 0x%x, sc_seen: 0x%x, sc_since_last_wkld:%d, error:%d, ret: %d\n",
vc1parse_ppic_adv.c 249 DEB("Error in vc1_MVRangeDecode \n");
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/include/
viddec_mpeg2.h 17 #define MPEG2_DEB(x...) DEB("MPEG2_Parser: "x)
18 #define MPEG2_FA_DEB(x...) DEB("MPEG2_Frame_attribute: "x)
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_fw_debug.h 20 #define DUMP_TO_MEM(x) DEB("0x%.08X ",x);
21 #define WRITE_SVEN(event, p1, p2, p3, p4, p5, p6) DEB("Sven evnt=0x%.8X p1=%d p2=%d p3=%d p4=%d p5=%d p6=%d\n",event, p1, p2, p3, p4, p5, p6)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_logging.py 154 DEB = logging.getLogger("DEB")
155 DEB.setLevel(logging.DEBUG)
166 DEB.log(logging.CRITICAL, m())
167 DEB.error(m())
168 DEB.warn (m())
169 DEB.info (m())
170 DEB.debug(m())
186 ('DEB', 'CRITICAL', '7'),
187 ('DEB', 'ERROR', '8')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_logging.py 154 DEB = logging.getLogger("DEB")
155 DEB.setLevel(logging.DEBUG)
166 DEB.log(logging.CRITICAL, m())
167 DEB.error(m())
168 DEB.warn (m())
169 DEB.info (m())
170 DEB.debug(m())
186 ('DEB', 'CRITICAL', '7'),
187 ('DEB', 'ERROR', '8')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_logging.py 154 DEB = logging.getLogger("DEB")
155 DEB.setLevel(logging.DEBUG)
166 DEB.log(logging.CRITICAL, m())
167 DEB.error(m())
168 DEB.warn (m())
169 DEB.info (m())
170 DEB.debug(m())
186 ('DEB', 'CRITICAL', '7'),
187 ('DEB', 'ERROR', '8')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_logging.py 154 DEB = logging.getLogger("DEB")
155 DEB.setLevel(logging.DEBUG)
166 DEB.log(logging.CRITICAL, m())
167 DEB.error(m())
168 DEB.warn (m())
169 DEB.info (m())
170 DEB.debug(m())
186 ('DEB', 'CRITICAL', '7'),
187 ('DEB', 'ERROR', '8')
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm.c 92 DEB("ERROR: size(%d) of context for codec=%d is greater than max=%d\n",size->context_size,codec_type,MAX_CODEC_CXT_SIZE);
534 DEB("\nFRAME ... DONE\n");
viddec_pm_parser_ops.c 19 {DEB("FAILURE!!!! getbits returned %d\n", ret);}
  /external/v8/src/s390/
constants-s390.h 405 DEB = 0xED0D, // Divide (short BFP)
    [all...]
simulator-s390.h 1208 EVALUATE(DEB);
simulator-s390.cc     [all...]

Completed in 4914 milliseconds