代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/136812/5857128
s bcopy.s
.data
/* .asciz "@(#)bcopy.s 1.1 92/07/30 SMI" */
.text
#include "DEFS.h"
| Copy a block of storage - must check for overlap (len < abs(from-to))
| Usage: bcopy(from, to, count)
ENTRY(bcopy)
mov
www.eeworm.com/read/136812/5857142
s memcpy.s
.data
/* .asciz "@(#)memcpy.s 1.1 92/07/30 SMI" */
.text
#include "DEFS.h"
| Copy a block of storage - must check for overlap (len < abs(from-to))
| Usage: memcpy(to, from, count)
ENTRY(memcpy)
www.eeworm.com/read/136812/5857157
s strncat.s
.data
/* .asciz "@(#)strncat.s 1.1 92/07/30 SMI" */
.text
#include "DEFS.h"
| Usage: strncat(s1, s2, n)
| Concatenate s2 on the end of s1. S1's space must be large enough.
| At most n characters
www.eeworm.com/read/136812/5857167
s bzero.s
.data
/* .asciz "@(#)bzero.s 1.1 92/07/30 SMI" */
.text
#include "DEFS.h"
| Zero block of storage
| Usage: bzero(addr, length)
ENTRY(bzero)
movl PARAM,a1 | address
movl PARAM2,d0 | length
jle
www.eeworm.com/read/136812/5857169
s memset.s
.data
/* .asciz "@(#)memset.s 1.1 92/07/30 SMI" */
.text
#include "DEFS.h"
| Set block of storage to a particular byte value
| Usage: memset(addr, value, length)
ENTRY(memset)
movl PARAM2,d1 | va
www.eeworm.com/read/136812/5857292
s strcmp.s
/*
* .seg "data"
* .asciz "@(#)strcmp.s 1.1 92/07/30"
* Copyright (c) 1987 by Sun Microsystems, Inc.
*/
#include
.seg "text"
.align 4
/*
* Compare strings: s1>s2: >0 s
www.eeworm.com/read/136812/5857297
s strcpy.s
/*
* .seg "data"
* .asciz "@(#)strcpy.s 1.1 92/07/30"
* Copyright (c) 1987 by Sun Microsystems, Inc.
*/
#include
.seg "text"
.align 4
#define DEST %i0
#define SRC %i1
#de
www.eeworm.com/read/136812/5857303
s strlen.s
/*
* .seg "data"
* .asciz "@(#)strlen.s 1.1 92/07/30"
* Copyright (c) 1987 by Sun Microsystems, Inc.
*/
#include
.seg "text"
.align 4
/*
* Returns the number of
* non-NUL
www.eeworm.com/read/136812/5857308
s strncmp.s
/*
* .seg "data"
* .asciz "@(#)strncmp.s 1.1 92/07/30"
* Copyright (c) 1989 by Sun Microsystems, Inc.
*/
#include
.seg "text"
.align 4
/*
* strncmp(s1, s2, n)
* Compare
www.eeworm.com/read/136786/5862123
s head.s
/*
* arch/s390/kernel/head.S
*
* S390 version
* Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
* Author(s): Hartmut Penner (hp@de.ibm.com),
* Mar