/openbmc/openbmc/poky/bitbake/lib/bs4/builder/ |
H A D | _htmlparser.py | 202 endpos = self.check_for_whole_start_tag(i) 203 if endpos < 0: 204 return endpos 206 self.__starttag_text = rawdata[i:endpos] 214 while k < endpos: 232 end = rawdata[k:endpos].strip() 243 % (rawdata[k:endpos][:20],)) 244 self.handle_data(rawdata[i:endpos]) 245 return endpos 253 return endpos
|
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
H A D | debugfs.c | 717 char *buff, *pos, *endpos; in iwl_dbgfs_fw_ver_read() local 727 endpos = pos + bufsz; in iwl_dbgfs_fw_ver_read() 752 char *buff, *pos, *endpos; in iwl_dbgfs_tas_get_status_read() local 796 endpos = pos + bufsz; in iwl_dbgfs_tas_get_status_read() 848 pos += scnprintf(pos, endpos - pos, in iwl_dbgfs_tas_get_status_read() 887 pos += scnprintf(pos, endpos - pos, in iwl_dbgfs_tas_get_status_read() 907 pos += scnprintf(pos, endpos - pos, in iwl_dbgfs_tas_get_status_read() 1152 char *buff, *pos, *endpos; in iwl_dbgfs_frame_stats_read() local 1164 endpos = pos + bufsz; in iwl_dbgfs_frame_stats_read() 1166 pos += scnprintf(pos, endpos - pos, in iwl_dbgfs_frame_stats_read() [all …]
|
H A D | rs.c | 3937 char *buff, *pos, *endpos; in rs_sta_dbgfs_drv_tx_stats_read() local 3949 endpos = pos + bufsz; in rs_sta_dbgfs_drv_tx_stats_read() 3951 pos += scnprintf(pos, endpos - pos, "COLUMN,"); in rs_sta_dbgfs_drv_tx_stats_read() 3953 pos += scnprintf(pos, endpos - pos, "%s,", rate_name[rate]); in rs_sta_dbgfs_drv_tx_stats_read() 3954 pos += scnprintf(pos, endpos - pos, "\n"); in rs_sta_dbgfs_drv_tx_stats_read() 3957 pos += scnprintf(pos, endpos - pos, in rs_sta_dbgfs_drv_tx_stats_read() 3962 pos += scnprintf(pos, endpos - pos, in rs_sta_dbgfs_drv_tx_stats_read() 3967 pos += scnprintf(pos, endpos - pos, "\n"); in rs_sta_dbgfs_drv_tx_stats_read()
|
/openbmc/u-boot/board/siemens/common/ |
H A D | factoryset.c | 95 int endpos; in get_factory_record_val() local 110 endpos = z; in get_factory_record_val() 111 nxt = endpos; in get_factory_record_val() 126 tmp = eeprom_buf[endpos]; in get_factory_record_val() 127 eeprom_buf[endpos] = end; in get_factory_record_val() 129 endpos - pos, name, buf, len); in get_factory_record_val() 131 eeprom_buf[endpos] = tmp; in get_factory_record_val()
|
/openbmc/u-boot/fs/yaffs2/ |
H A D | yaffs_yaffs1.c | 135 unsigned int endpos; in yaffs1_scan() local 156 endpos = in yaffs1_scan() 164 endpos) { in yaffs1_scan() 166 endpos; in yaffs1_scan()
|
H A D | yaffs_yaffs2.c | 1036 loff_t endpos; in yaffs2_scan_chunk() local 1067 endpos = chunk_base + tags.n_bytes; in yaffs2_scan_chunk() 1070 in->variant.file_variant.scanned_size < endpos) { in yaffs2_scan_chunk() 1072 scanned_size = endpos; in yaffs2_scan_chunk() 1074 file_size = endpos; in yaffs2_scan_chunk()
|
/openbmc/linux/net/ceph/crush/ |
H A D | mapper.c | 657 int endpos = outpos + left; in crush_choose_indep() local 670 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 680 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 685 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 691 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 764 for (i = outpos; i < endpos; i++) { in crush_choose_indep() 807 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 822 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep() 827 for (rep = outpos; rep < endpos; rep++) { in crush_choose_indep()
|
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | patching.py | 171 def finditer(klass, content: str, pos=0, endpos=-1) -> Iterable[Match]: argument 173 if endpos >= 0: 174 content = content[:endpos] 178 def domatch(klass, content: str, pos=0, endpos=-1) -> Optional[Match]: argument 180 if endpos >= 0: 181 content = content[:endpos]
|
/openbmc/linux/drivers/net/can/slcan/ |
H A D | slcan-core.c | 486 unsigned char *endpos; in slcan_encaps() local 499 endpos = pos + SLCAN_EFF_ID_LEN; in slcan_encaps() 503 endpos = pos + SLCAN_SFF_ID_LEN; in slcan_encaps() 508 while (endpos >= pos) { in slcan_encaps() 509 *endpos-- = hex_asc_upper[id & 0xf]; in slcan_encaps()
|
/openbmc/linux/drivers/video/fbdev/ |
H A D | arcfb.c | 451 unsigned int fbmemlength,x,y,w,h, bitppos, startpos, endpos, bitcount; in arcfb_write() local 484 endpos = ceilXres((bitppos + (count*8)), xres); in arcfb_write() 485 bitcount = endpos - startpos; in arcfb_write()
|
/openbmc/openbmc/poky/bitbake/lib/bs4/ |
H A D | dammit.py | 306 declared_encoding_match = xml_encoding_re.search(markup, endpos=xml_endpos) 308 declared_encoding_match = html_meta_re.search(markup, endpos=html_endpos)
|
/openbmc/linux/fs/xfs/scrub/ |
H A D | xfarray.c | 240 loff_t endpos = xfarray_pos(array, array->nr); in xfarray_store_anywhere() local 246 pos < endpos && array->unset_slots > 0; in xfarray_store_anywhere()
|
/openbmc/qemu/scripts/ |
H A D | analyze-migration.py | 78 endpos = self.file.tell() 79 self.file.seek(max(-endpos, -10 * 1024 * 1024), os.SEEK_END)
|
/openbmc/openbmc/poky/bitbake/lib/ply/ |
H A D | yacc.py | 228 endpos = getattr(self.slice[n],"endlexpos",startpos) 229 return startpos,endpos
|