码迷,mamicode.com
首页 >  
搜索关键字:bytes    ( 3829个结果
Linux启动
BIOS -> MBR -> boot loader -> kernel加电->主板BIOS(允许从光盘、USB和硬盘来启动计算机)->读取所选存储器的头512 bytes(MBR),MBR告诉电脑从某一分区加载boot loader->boot loader存储有关OS的信息,比如系统版本,ker...
分类:系统相关   时间:2014-05-18 19:19:18    阅读次数:290
如何访问pcie整个4k的配置空间
目前用于访问PCIe配置空间寄存器的方法需要追溯到原始的PCI规范。为了发起PCI总线配置周期,Intel实现的PCI规范使用IO空间的CF8h和CFCh来分别作为索引和数据寄存器,这种方法可以访问所有PCI设备的255 bytes配置寄存器。Intel Chipsets目前仍然支持这种访问PCI配置空间的方法。     PCIe规范在PCI规范的基础上,将配置空间扩展到4K bytes,至于为...
分类:其他好文   时间:2014-05-18 05:28:03    阅读次数:219
Radar之字节流加载图片
获取GUITextureGameObject _obj = GameObject.Find("Tex1");GUITexture _tex = _obj.GetComponent();加载图片字节流//读取文件到byte数组byte[] bytes = System.IO.File.ReadAllB...
分类:其他好文   时间:2014-05-16 01:07:48    阅读次数:242
CareerCup之1.6 Rotate Image
【题目】 原文: 1.6 Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. Can you do this in place? 译文: 一张图像表示...
分类:其他好文   时间:2014-05-15 05:43:35    阅读次数:240
Unit Conversion
Q1:SectorCount->>CapacitySectorCount*SectorSize=totalbytes2097152*512=1073741824/1024/1024/1024=1GBQ2:Capacity->>SectorCountConverttototalbytes/sectorsize=SectorCount1GB*1024*1024*1024(bytes)=1073741824/512=2097152
分类:其他好文   时间:2014-05-13 04:32:42    阅读次数:308
史上最简单的带流控功能的http server
import time import SimpleHTTPServer import SocketServer BYTES_PER_SECOND=160*1024 class MyHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): def do_GET(self): """Serve a GET re...
分类:其他好文   时间:2014-05-10 03:36:34    阅读次数:276
Python -- 网络编程 -- 抓取网页图片 -- 图虫网
字符串(str)编码成字节码(bytes),字节码解码为字符串获取当前环境编码:sys.stdin.encodingurl编码urllib.parse.quote()url解码urllib.parse.unquote()列表去重:pages = list(set(pages))创建文件夹(可多级创建...
分类:编程语言   时间:2014-05-10 01:30:27    阅读次数:610
Sicily 1735 Encryption (模拟)
链接:http://soj.me/show_problem.php?pid=1735&cid= Description Let me introduce an easy method of encryption to you. Suppose there’re N bytes (1 byte = 8 bits) data that are to be encrypted and ...
分类:其他好文   时间:2014-05-09 22:46:01    阅读次数:498
iOS BCD编码
inline static NSData* encodeBCD(NSString *value){ //NSString *value = @"123456"; NSMutableData *vdata = [[NSMutableData alloc] init]; __uint8_t bytes[1] = {6}; [vdata appendBytes:&bytes length:1...
分类:移动开发   时间:2014-05-07 12:28:39    阅读次数:404
常用SQL命令
1、查看所有表的物理大小1 select segment_name, bytes from user_segments order by bytes desc2、查看表空間的名稱及大小1 select t.tablespace_name, round(sum(bytes/(1024*1024)),....
分类:数据库   时间:2014-05-07 00:30:02    阅读次数:1232
3829条   上一页 1 ... 380 381 382 383 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!