Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5 authored by Linus Torvalds on 16 August 2020, 20:04:57 UTC
Linux 5.9-rc1
Tip revision: 9123e3a
memchr.S
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 *  linux/arch/arm/lib/memchr.S
 *
 *  Copyright (C) 1995-2000 Russell King
 *
 *  ASM optimised string functions
 */
#include <linux/linkage.h>
#include <asm/assembler.h>

	.text
	.align	5
ENTRY(memchr)
1:	subs	r2, r2, #1
	bmi	2f
	ldrb	r3, [r0], #1
	teq	r3, r1
	bne	1b
	sub	r0, r0, #1
2:	movne	r0, #0
	ret	lr
ENDPROC(memchr)
back to top