代码搜索结果
找到约 2,917 项符合
Strip 的代码
foo.asm
; 编译链接方法
; (ld 的‘-s’选项意为“strip all”)
;
; [root@XXX XXX]# nasm -f elf foo.asm -o foo.o
; [root@XXX XXX]# gcc -c bar.c -o bar.o
; [root@XXX XXX]# ld -s hello.o bar.o -o foobar
; [root@XXX XXX]#
kernel.asm
; 编译链接方法
; (ld 的‘-s’选项意为“strip all”)
;
; [root@XXX XXX]# nasm -f elf kernel.asm -o kernel.o
; [root@XXX XXX]# ld -s kernel.o -o kernel.bin
; [root@XXX XXX]#
[section .text] ; 代码在此
global
ip2long.java
package book.string;
public class IP2Long {
//将127.0.0.1 形式的IP地址转换成10进制整数,这里没有进行任何错误处理
public static long ipToLong(String strIP){
long[] ip=new long[4];
//先找到IP地址字符串中.的位置
lang.js.svn-base
// Localization
var langs = new Object;
function apply_lang(lang){
var f = document.getElementsByClassName('lclzn');
for(var i=0; i < f.length ; i++){
var tmp = f[i].innerHTML.strip().split(",")
lang.js
// Localization
var langs = new Object;
function apply_lang(lang){
var f = document.getElementsByClassName('lclzn');
for(var i=0; i < f.length ; i++){
var tmp = f[i].innerHTML.strip().split(",")
dounsreloc
#!/bin/sh
# objdump the reloc table, but strip off the headings and reloc
# numbers and sort the result. Intended for use in comparing reloc
# tables that may not be in the same order.
objdump +relo
dostriptest
#!/bin/sh
x=striptest.xx.$$
y=striptest.yy.$$
cp $1 $x
strip $x
cp $2 $y
strip $y
doobjcmp $x $y
exit
#eof