id
stringlengths
22
129
text
stringlengths
60
19.5k
arch
stringclasses
9 values
syntax
stringclasses
5 values
kind
stringclasses
4 values
repo
stringclasses
32 values
path
stringlengths
7
108
license
stringclasses
10 values
commit
stringlengths
40
40
source_host
stringclasses
1 value
category
stringclasses
15 values
source_url
stringlengths
85
192
line_start
int64
1
5.48k
line_end
int64
4
5.5k
u-boot/u-boot:post/lib_ppc/asm.S:9
mullw r0,r3,r4 subf r0,r5,r0 divw r0,r0,r6 add r9,r9,r0 bdnz cpu_post_complex_1_loop cpu_post_complex_1_done: mr r3,r9 blr /* int cpu_post_complex_2_asm (int x, int n); */ .global cpu_post_complex_2_asm cpu_post_complex_2_asm: mr. r0,r4 mtctr r0 mr r0,r3 li r3,1 li r4,1 blelr cpu_post_complex_2_loop: mul...
powerpc
gas-like
handwritten
u-boot/u-boot
post/lib_ppc/asm.S
GPL-2.0
ad5bb451ade552c44bef9119d907929ebc2c126f
github
bootloader
https://github.com/u-boot/u-boot/blob/ad5bb451ade552c44bef9119d907929ebc2c126f/post/lib_ppc/asm.S
321
346
u-boot/u-boot:tools/prelink-riscv.inc:1
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCAT_IMPL(...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a
github
bootloader
https://github.com/u-boot/u-boot/blob/38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
return NULL; } static void prelink_bonn(void *data) { Elf_Ehdr *ehdr = data; Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (target16_to_cpu(ehdr->e_machine) != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + targetnn_to_cpu(ehdr->e_phoff); Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a
github
bootloader
https://github.com/u-boot/u-boot/blob/38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
if (rela_dyn == NULL) die("No .rela.dyn found"); if (dynsym == NULL) die("No .dynsym found"); for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), targetnn_to_cpu(r->r_offset)); if (buf == NULL) continue; if (ELF_R_TYPE(targetnn...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a
github
bootloader
https://github.com/u-boot/u-boot/blob/38dbe637c9dfcadbd1bc201bfbb27f96b2ad525a/tools/prelink-riscv.inc
81
123
u-boot/u-boot:tools/prelink-riscv.inc:1
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCAT_IMPL(...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
71bdfcb21d755435a8e99f0ff66b853a3759f4b7
github
bootloader
https://github.com/u-boot/u-boot/blob/71bdfcb21d755435a8e99f0ff66b853a3759f4b7/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
return NULL; } static void prelink_bonn(void *data) { Elf_Ehdr *ehdr = data; Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (target16_to_cpu(ehdr->e_machine) != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + targetnn_to_cpu(ehdr->e_phoff); Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
71bdfcb21d755435a8e99f0ff66b853a3759f4b7
github
bootloader
https://github.com/u-boot/u-boot/blob/71bdfcb21d755435a8e99f0ff66b853a3759f4b7/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
if (rela_dyn == NULL) die("No .rela.dyn found"); if (dynsym == NULL) die("No .dynsym found"); for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), targetnn_to_cpu(r->r_offset)); if (buf == NULL) continue; if (ELF_R_TYPE(targetnn...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
71bdfcb21d755435a8e99f0ff66b853a3759f4b7
github
bootloader
https://github.com/u-boot/u-boot/blob/71bdfcb21d755435a8e99f0ff66b853a3759f4b7/tools/prelink-riscv.inc
81
123
u-boot/u-boot:tools/prelink-riscv.inc:1
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCAT_IMPL(...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
4539926a9c47638951f29f550f3a640e4c223032
github
bootloader
https://github.com/u-boot/u-boot/blob/4539926a9c47638951f29f550f3a640e4c223032/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
static void prelink_bonn(void *data) { Elf_Ehdr *ehdr = data; Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (target16_to_cpu(ehdr->e_machine) != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + targetnn_to_cpu(ehdr->e_phoff); Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs + target16_to_c...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
4539926a9c47638951f29f550f3a640e4c223032
github
bootloader
https://github.com/u-boot/u-boot/blob/4539926a9c47638951f29f550f3a640e4c223032/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
die("No .rela.dyn found"); if (dynsym == NULL) die("No .dynsym found"); for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_bonn(data, phdrs, target16_to_cpu(ehdr->e_phnum), targetnn_to_cpu(r->r_offset)); if (buf == NULL) continue; if (ELF_R_TYPE(targetnn_to_cpu(r->r_info)) == R...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
4539926a9c47638951f29f550f3a640e4c223032
github
bootloader
https://github.com/u-boot/u-boot/blob/4539926a9c47638951f29f550f3a640e4c223032/tools/prelink-riscv.inc
81
119
u-boot/u-boot:tools/prelink-riscv.inc:1
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCAT_IMPL(...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
e604410d3eafc77e1b9a7fbb0580a23e528f0037
github
bootloader
https://github.com/u-boot/u-boot/blob/e604410d3eafc77e1b9a7fbb0580a23e528f0037/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
Elf_Ehdr *ehdr = data; Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (le16_to_cpu(ehdr->e_machine) != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + lenn_to_cpu(ehdr->e_phoff); Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs + le16_to_cpu(ehdr->e_phnum); ++p) { if (le32_to_cpu(p->p_typ...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
e604410d3eafc77e1b9a7fbb0580a23e528f0037
github
bootloader
https://github.com/u-boot/u-boot/blob/e604410d3eafc77e1b9a7fbb0580a23e528f0037/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
die("No .dynsym found"); for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_nn(data, phdrs, le16_to_cpu(ehdr->e_phnum), lenn_to_cpu(r->r_offset)); if (buf == NULL) continue; if (ELF_R_TYPE(lenn_to_cpu(r->r_info)) == R_RISCV_RELATIVE) *((uintnn_t*) buf) = r->r_addend; else if (...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
e604410d3eafc77e1b9a7fbb0580a23e528f0037
github
bootloader
https://github.com/u-boot/u-boot/blob/e604410d3eafc77e1b9a7fbb0580a23e528f0037/tools/prelink-riscv.inc
81
113
u-boot/u-boot:tools/prelink-riscv.inc:1
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCAT_IMPL(...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
83d290c56fab2d38cd1ab4c4cc7099559c1d5046
github
bootloader
https://github.com/u-boot/u-boot/blob/83d290c56fab2d38cd1ab4c4cc7099559c1d5046/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (ehdr->e_machine != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + ehdr->e_phoff; Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs + ehdr->e_phnum; ++p) { if (p->p_type == PT_DYNAMIC) { dyns = data + p->p_offset; break; } } if (dyn...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
83d290c56fab2d38cd1ab4c4cc7099559c1d5046
github
bootloader
https://github.com/u-boot/u-boot/blob/83d290c56fab2d38cd1ab4c4cc7099559c1d5046/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_nn(data, phdrs, ehdr->e_phnum, r->r_offset); if (buf == NULL) continue; if (ELF_R_TYPE(r->r_info) == R_RISCV_RELATIVE) *((uintnn_t*) buf) = r->r_addend; else if (ELF_R_TYPE(r->r_info) == R_RISCV_32) *((uint32_t*) buf) = dynsy...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
83d290c56fab2d38cd1ab4c4cc7099559c1d5046
github
bootloader
https://github.com/u-boot/u-boot/blob/83d290c56fab2d38cd1ab4c4cc7099559c1d5046/tools/prelink-riscv.inc
81
111
u-boot/u-boot:tools/prelink-riscv.inc:1
/* * Copyright (C) 2017 Andes Technology * Chih-Mao Chen <cmchen@andestech.com> * * SPDX-License-Identifier: GPL-2.0+ * * Statically process runtime relocations on RISC-V ELF images * so that it can be directly executed when loaded at LMA * without fixup. Both RV32 and RV64 are supported. */ #define CONCA...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd
github
bootloader
https://github.com/u-boot/u-boot/blob/42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd/tools/prelink-riscv.inc
1
60
u-boot/u-boot:tools/prelink-riscv.inc:2
Elf_Ehdr *ehdr = data; Elf_Phdr *p; Elf_Dyn *dyn; Elf_Rela *r; if (ehdr->e_machine != EM_RISCV) die("Machine type is not RISC-V"); Elf_Phdr *phdrs = data + ehdr->e_phoff; Elf_Dyn *dyns = NULL; for (p = phdrs; p < phdrs + ehdr->e_phnum; ++p) { if (p->p_type == PT_DYNAMIC) { dyns = data + p->p_offset; ...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd
github
bootloader
https://github.com/u-boot/u-boot/blob/42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd/tools/prelink-riscv.inc
41
100
u-boot/u-boot:tools/prelink-riscv.inc:3
die("No .dynsym found"); for (r = rela_dyn; r < rela_dyn + rela_count; ++r) { void* buf = get_offset_nn(data, phdrs, ehdr->e_phnum, r->r_offset); if (buf == NULL) continue; if (ELF_R_TYPE(r->r_info) == R_RISCV_RELATIVE) *((uintnn_t*) buf) = r->r_addend; else if (ELF_R_TYPE(r->r_info) == R_RISCV_32) ...
riscv
gas-like
handwritten
u-boot/u-boot
tools/prelink-riscv.inc
GPL-2.0
42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd
github
bootloader
https://github.com/u-boot/u-boot/blob/42ac26f2b0c94f27170fdca2d7d05dbfb9a1d3fd/tools/prelink-riscv.inc
81
112
u-boot/u-boot:tools/updater/ppcstring.S:1
/* * String handling functions for PowerPC. * * Copyright (C) 1996 Paul Mackerras. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option...
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
1
60
u-boot/u-boot:tools/updater/ppcstring.S:2
1: lbzu r0,1(r5) cmpwi 0,r0,0 bne 1b addi r5,r5,-1 1: lbzu r0,1(r4) cmpwi 0,r0,0 stbu r0,1(r5) bne 1b blr .globl strcmp strcmp: addi r5,r3,-1 addi r4,r4,-1 1: lbzu r3,1(r5) cmpwi 1,r3,0 lbzu r0,1(r4) subf. r3,r0,r3 beqlr 1 beq 1b blr .globl strlen strlen: addi r4,r3,-1 1: lbzu r0,1(r4) cmpwi 0,r0,0...
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
41
100
u-boot/u-boot:tools/updater/ppcstring.S:3
andi. r0,r6,3 add r5,r0,r5 subf r6,r0,r6 rlwinm r0,r5,32-2,2,31 mtctr r0 bdz 6f 1: stwu r4,4(r6) bdnz 1b 6: andi. r5,r5,3 7: cmpwi 0,r5,0 beqlr mtctr r5 addi r6,r6,3 8: stbu r4,1(r6) bdnz 8b blr .globl bcopy bcopy: mr r6,r3 mr r3,r4 mr r4,r6 b memcpy .globl memmove memmove: cmplw 0,r3,r4 bgt backwa...
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
81
140
u-boot/u-boot:tools/updater/ppcstring.S:4
lwzu r8,8(r4) stw r7,4(r6) stwu r8,8(r6) bdnz 1b andi. r5,r5,7 2: cmplwi 0,r5,4 blt 3f lwzu r0,4(r4) addi r5,r5,-4 stwu r0,4(r6) 3: cmpwi 0,r5,0 beqlr mtctr r5 addi r4,r4,3 addi r6,r6,3 4: lbzu r0,1(r4) stbu r0,1(r6) bdnz 4b blr 5: subfic r0,r0,4 mtctr r0 6: lbz r7,4(r4) addi r4,r4,1 stb r7,4(r6) add...
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
121
180
u-boot/u-boot:tools/updater/ppcstring.S:5
bne 5f 1: lwz r7,-4(r4) lwzu r8,-8(r4) stw r7,-4(r6) stwu r8,-8(r6) bdnz 1b andi. r5,r5,7 2: cmplwi 0,r5,4 blt 3f lwzu r0,-4(r4) subi r5,r5,4 stwu r0,-4(r6) 3: cmpwi 0,r5,0 beqlr mtctr r5 4: lbzu r0,-1(r4) stbu r0,-1(r6) bdnz 4b blr 5: mtctr r0 6: lbzu r7,-1(r4) stbu r7,-1(r6) bdnz 6b subf r5,r0,r5 rl...
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
161
216
u-boot/u-boot:tools/updater/ppcstring.S:6
blr 2: li r3,0 blr .global memchr memchr: cmpwi 0,r5,0 ble- 2f mtctr r5 addi r3,r3,-1 1: lbzu r0,1(r3) cmpw 0,r0,r4 bdnzf 2,1b beqlr 2: li r3,0 blr
powerpc
gas-like
handwritten
u-boot/u-boot
tools/updater/ppcstring.S
GPL-2.0
c7de829c796978e519984df2f1c8cfcf921a39a4
github
bootloader
https://github.com/u-boot/u-boot/blob/c7de829c796978e519984df2f1c8cfcf921a39a4/tools/updater/ppcstring.S
201
216
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
1
60
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:2
movdqa [rsp], xmm0 %define RD42 [rsp] %else %define RD42 [GLOBAL(rd42)] %endif movd xmm2, dword ptr arg(6) ;flimit punpcklwd xmm2, xmm2 punpckldq xmm2, xmm2 punpcklqdq xmm2, xmm2 mov rsi, arg(0) ;src_ptr mov ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
41
100
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:3
punpcklbw xmm5, xmm0 ; mm5 = r2 p0..p3 paddusw xmm3, xmm5 ; mm3 += mm5 ; thresholding movdqa xmm6, xmm1 ; mm6 = r0 p0..p3 psubusw xmm6, xmm5 ; mm6 = r0 p0..p3 - r2 p0..p3 ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
81
140
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:4
pand xmm1, xmm7 ; mm1 select vals > thresh from source pandn xmm7, xmm3 ; mm7 select vals < thresh from blurred result paddusw xmm1, xmm7 ; combination packuswb xmm1, xmm0 ; p...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
121
180
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:5
punpcklbw xmm5, xmm0 ; mm5 = p1..p4 paddusw xmm3, xmm5 ; mm3 += mm6 ; thresholding movdqa xmm7, xmm1 ; mm7 = p0..p3 psubusw xmm7, xmm5 ; mm7 = p0..p3 - p1..p4 psubusw xmm5, xmm1 ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
161
220
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:6
; thresholding movdqa xmm6, xmm1 ; mm6 = p0..p3 psubusw xmm6, xmm4 ; mm6 = p0..p3 - p1..p4 psubusw xmm4, xmm1 ; mm5 = p1..p4 - p0..p3 paddusw xmm6, xmm4 ; mm6 = abs(p0..p3 - p1..p4) pcmpg...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
201
260
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:7
pop rdi pop rsi RESTORE_GOT RESTORE_XMM UNSHADOW_ARGS pop rbp ret %undef RD42 ;void vp10_mbpost_proc_down_xmm(unsigned char *dst, ; int pitch, int rows, int cols,int flimit) extern sym(vp10_rv) global sym(vp10_mbpost_proc_down_xmm) PRIVATE sym(vp10_mbpost_pro...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
241
300
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:8
;rows +=8; add dword arg(2), 8 ;for(c=0; c<cols; c+=8) .loop_col: mov rsi, arg(0) ; s pxor xmm0, xmm0 ; movsxd rax, dword ptr arg(1) ;pitch ; neg rax ; rax =...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
281
340
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:9
jne .loop_initvar ;save the var and sum xor rdx, rdx .loop_row: movq xmm1, QWORD PTR [rsi] ; [s-pitch*8] movq xmm2, QWORD PTR [rdi] ; [s+pitch*7] punpcklbw xmm1, xmm0 punpcklbw xmm...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
321
380
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:10
pmulhw xmm4, xmm4 movdqa xmm2, xmm1 punpcklwd xmm1, xmm4 punpckhwd xmm2, xmm4 movdqa xmm4, xmm7 pslld xmm4, 4 psubd xmm4, xmm7 psubd xmm3, xmm1 ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
361
420
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:11
%else movdqu xmm4, [sym(vp10_rv) + rcx*2] %endif paddw xmm1, xmm4 ;paddw xmm1, eight8s psraw xmm1, 4 packuswb xmm1, xmm0 pand xmm1, xmm3 pandn xmm3, xmm2 ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
401
460
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:12
; begin epilog pop rdi pop rsi RESTORE_GOT RESTORE_XMM UNSHADOW_ARGS pop rbp ret %undef flimit4 ;void vp10_mbpost_proc_across_ip_xmm(unsigned char *src, ; int pitch, int rows, int cols,int flimit) global sym(vp10_mbpost_proc_across_ip_xmm) PRIVATE sym...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
441
500
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:13
xor rcx, rcx ;sum=0; mov rsi, arg(0); s mov rdi, -8 .ip_var_loop: ;for(i=-8;i<=6;i++) ;{ ; sumsq += s[i]*s[i]; ; sum += s[i]; ;} movzx eax, byte [rsi+rdi] add ecx, eax mul al ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
481
540
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:14
punpcklbw xmm1, xmm0 ; expanding punpcklbw xmm2, xmm0 ; expanding punpcklwd xmm1, xmm0 ; expanding to dwords punpcklwd xmm2, xmm0 ; expanding to dwords psubd xmm2, xmm1 ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
521
580
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:15
pmaddwd xmm3, xmm3 movdqa xmm5, xmm7 pslld xmm5, 4 psubd xmm5, xmm7 psubd xmm5, xmm3 psubd xmm5, flimit4 psrad xmm5, 31 packssdw xmm5, xmm0 packsswb xmm5, xm...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
561
620
webmproject/libvpx:vp10/common/x86/postproc_sse2.asm:16
cmp rcx, rdx jl .nextcol4 ;s+=pitch; movsxd rax, dword arg(1) add arg(0), rax sub dword arg(2), 1 ;rows-=1 cmp dword arg(2), 0 jg .ip_row_loop add rsp, 16 pop rsp ; begin epilog pop rdi pop rsi ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/postproc_sse2.asm
BSD-3-Clause
fce3cee8ddd8dda91553e4701c0a8081ff4bab52
github
media
https://github.com/webmproject/libvpx/blob/fce3cee8ddd8dda91553e4701c0a8081ff4bab52/vp10/common/x86/postproc_sse2.asm
601
632
webmproject/libvpx:vp10/common/x86/vp9_mfqe_sse2.asm:1
; ; Copyright (c) 2015 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_mfqe_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_mfqe_sse2.asm
1
60
webmproject/libvpx:vp10/common/x86/vp9_mfqe_sse2.asm:2
mov rax, arg(0) ; src mov rsi, arg(1) ; src_stride mov rdx, arg(2) ; dst mov rdi, arg(3) ; dst_stride mov rcx, 16 ; loop count pxor xmm6, xmm6 .combine movdqa ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_mfqe_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_mfqe_sse2.asm
41
100
webmproject/libvpx:vp10/common/x86/vp9_mfqe_sse2.asm:3
jnz .combine ; begin epilog pop rdi pop rsi RESTORE_GOT RESTORE_XMM UNSHADOW_ARGS pop rbp ret ;void vp10_filter_by_weight8x8_sse2 ;( ; unsigned char *src, ; int src_stride, ; unsigned char *dst, ; int dst_stride, ; i...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_mfqe_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_mfqe_sse2.asm
81
140
webmproject/libvpx:vp10/common/x86/vp9_mfqe_sse2.asm:4
mov rdi, arg(3) ; dst_stride mov rcx, 8 ; loop count pxor xmm4, xmm4 .combine movq xmm2, [rax] movq xmm3, [rdx] add rax, rsi ; src * src_weight punpcklbw xmm2, xmm4 pmullw xmm2, xmm0 ; dst * ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_mfqe_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_mfqe_sse2.asm
121
180
webmproject/libvpx:vp10/common/x86/vp9_mfqe_sse2.asm:5
;( ; unsigned char *src1, 0 ; int stride1, 1 ; unsigned char *src2, 2 ; int stride2, 3 ; unsigned int *variance, 4 ; unsigned int *sad, 5 ;) global sym(vp10_variance_and_sad_16x16_sse2) PRIVATE sym(vp10_variance_and_sad_16x16_sse2): ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_mfqe_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_mfqe_sse2.asm
161
220
webmproject/libvpx:vp10/common/x86/vp9_postproc_sse2.asm:16
cmp rcx, rdx jl .nextcol4 ;s+=pitch; movsxd rax, dword arg(1) add arg(0), rax sub dword arg(2), 1 ;rows-=1 cmp dword arg(2), 0 jg .ip_row_loop add rsp, 16 pop rsp ; begin epilog pop rdi pop rsi ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_postproc_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_postproc_sse2.asm
601
660
webmproject/libvpx:vp10/common/x86/vp9_postproc_sse2.asm:17
.addnoise_loop: call sym(LIBVPX_RAND) WRT_PLT mov rcx, arg(1) ;noise and rax, 0xff add rcx, rax ; we rely on the fact that the clamping vectors are stored contiguously ; in black/white/both order. Note that we have to reload this here because ; rdx could be trashed by rand() ...
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_postproc_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_postproc_sse2.asm
641
694
webmproject/libvpx:vp10/common/x86/vp9_postproc_sse2.asm:18
pop rdi pop rsi RESTORE_GOT UNSHADOW_ARGS pop rbp ret SECTION_RODATA align 16 rd42: times 8 dw 0x04 four8s: times 4 dd 8
x86_64
masm-like
handwritten
webmproject/libvpx
vp10/common/x86/vp9_postproc_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/common/x86/vp9_postproc_sse2.asm
681
694
webmproject/libvpx:vp10/encoder/x86/dct_sse2.asm:1
; ; Copyright (c) 2016 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/dct_sse2.asm
BSD-3-Clause
af7fb17c09158e9039bfe6d72c591347b7c0ceb9
github
media
https://github.com/webmproject/libvpx/blob/af7fb17c09158e9039bfe6d72c591347b7c0ceb9/vp10/encoder/x86/dct_sse2.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_dct_mmx.asm:1
; ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_mmx.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_mmx.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_dct_mmx.asm:2
movq m1, m4 movq m3, m0 punpckldq m1, m5 punpckhdq m4, m5 punpckldq m3, m2 punpckhdq m0, m2 SWAP 2, 3, 0, 1, 4 %endmacro INIT_MMX mmx cglobal fwht4x4, 3, 4, 8, input, output, stride lea r3q, ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_mmx.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_mmx.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_dct_mmx.asm:3
movq [outputq + 16], m1 movq [outputq + 24], m7 pxor m4, m4 pxor m5, m5 pcmpgtw m4, m2 pcmpgtw m5, m3 movq m6, m2 movq m7, m3 punpcklwd m2, ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_mmx.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_mmx.asm
81
104
webmproject/libvpx:vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm:1
; ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm:2
INTERLEAVE_2X qdq, %3, %7, %9 INTERLEAVE_2X qdq, %2, %6, %9 INTERLEAVE_2X qdq, %4, %8, %9 SWAP %2, %5 SWAP %4, %7 %endmacro %macro HMD8_1D 0 psubw m8, m0, m1 psubw m9, m2, m3 paddw m0, m1 paddw m2, m3 SWAP 1, 8 SWAP ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm:3
SWAP 5, 9 psubw m8, m2, m6 psubw m9, m3, m7 paddw m2, m6 paddw m3, m7 SWAP 6, 8 SWAP 7, 9 %endmacro INIT_XMM ssse3 cglobal hadamard_8x8, 3, 5, 10, input, stride, output lea r3, [2 * strideq] lea...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_dct_ssse3_x86_64.asm
81
121
webmproject/libvpx:vp10/encoder/x86/vp9_error_sse2.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_error_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_error_sse2.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_error_sse2.asm:2
; accumulate in 64bit punpckldq m7, m0, m5 punpckhdq m0, m5 paddq m4, m7 punpckldq m7, m1, m5 paddq m4, m0 punpckhdq m1, m5 paddq m4, m7 punpckldq m7, m2, m5 paddq m4, m1 punpckhdq m2, m5 paddq m6, m7 punpckldq m7, m3, m5 paddq m6, m2 punpckhdq m3, m5 paddq m6, ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_error_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_error_sse2.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_error_sse2.asm:3
INIT_XMM sse2 cglobal block_error_fp, 3, 3, 6, uqc, dqc, size pxor m4, m4 ; sse accumulator pxor m5, m5 ; dedicated zero register lea uqcq, [uqcq+sizeq*2] lea dqcq, [dqcq+sizeq*2] neg sizeq .loop: mova m2, [uqcq+sizeq*2] mova m0, [dqcq+sizeq*2...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_error_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_error_sse2.asm
81
122
webmproject/libvpx:vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm:2
%endif mova m3, [r2q] ; m3 = dequant mov r3, qcoeffmp mov r4, dqcoeffmp mov r5, iscanmp %ifidn %1, fp_32x32 psllw m2, 1 %endif pxor ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm:3
%ifidn %1, fp_32x32 psrlw m8, 1 psrlw m13, 1 psignw m8, m9 psignw m13, m10 psrlw m0, m3, 2 %else psrlw m0, m3, 1 %endif mova [r4q+ncoeffq*2+ 0]...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
81
140
webmproject/libvpx:vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm:4
paddsw m11, m1 ; m11 += round pmulhw m14, m6, m2 ; m14 = m6*q>>16 pmulhw m13, m11, m2 ; m13 = m11*q>>16 psignw m14, m9 ; m14 = reinsert sign psignw ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
121
180
webmproject/libvpx:vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm:5
add ncoeffq, mmsize jl .ac_only_loop .accumulate_eob: ; horizontally accumulate/max eobs and write into [eob] memory pointer mov r2, eobmp pshufd m7, m8, 0xe pmaxsw m8, m7 pshuflw m7...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_quantize_ssse3_x86_64.asm
161
201
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:2
movdqa xmm1, %1 punpcklwd %1,xmm0 punpckhwd xmm1,xmm0 paddd %1, xmm1 SUM_ACROSS_Q %1 %endmacro ;void ssim_parms_sse2( ; unsigned char *s, ; int sp, ; unsigned char *r, ; int rp ; unsigned long *sum_s, ; unsigned long *sum_r, ; unsign...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:3
pxor xmm14,xmm14 ;sum_r pxor xmm13,xmm13 ;sum_sq_s pxor xmm12,xmm12 ;sum_sq_r pxor xmm11,xmm11 ;sum_sxr mov rdx, 16 ;row counter .NextRow: ;grab source and reference pixels movdqu xmm5, [rsi] movdqu xmm6, [r...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
81
140
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:4
movd [rdi], xmm14; mov rdi,arg(6) movd [rdi], xmm13; mov rdi,arg(7) movd [rdi], xmm12; mov rdi,arg(8) movd [rdi], xmm11; ; begin epilog pop rdi pop rsi RESTORE_XMM UNSHADOW_ARGS ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
121
180
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:5
push rdi ; end prolog mov rsi, arg(0) ;s mov rcx, arg(1) ;sp mov rdi, arg(2) ;r mov rax, arg(3) ;rp pxor xmm0, xmm0 pxor xmm15,xmm15 ;sum_s pxor xmm14,xmm14 ;sum_r ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
161
216
webmproject/libvpx:vp10/encoder/x86/vp9_ssim_opt_x86_64.asm:6
mov rdi,arg(5) movd [rdi], xmm14; mov rdi,arg(6) movd [rdi], xmm13; mov rdi,arg(7) movd [rdi], xmm12; mov rdi,arg(8) movd [rdi], xmm11; ; begin epilog pop rdi pop rsi ...
x86_64
nasm-like
macro-heavy
webmproject/libvpx
vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_ssim_opt_x86_64.asm
201
216
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
1
60
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:2
%define stack_size 96 sub rsp, stack_size mov [rsp + rbp_backup], rbp ; end prolog mov edx, arg(3) mov [rsp + block_width], rdx mov edx, arg(4) mov [rsp + block_height], rdx movd ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
41
100
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:3
.temporal_filter_apply_load_8: movq xmm0, [rsi] ; first row lea rsi, [rsi + rbp] ; += stride punpcklbw xmm0, xmm7 ; src[ 0- 7] movq xmm1, [rsi] ; second row lea rsi, [rsi + rbp] ; += stride ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
81
140
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:4
psrlw xmm0, [rsp + strength] psrlw xmm1, [rsp + strength] ; modifier = 16 - modifier ; saturation takes care of modifier > 16 movdqa xmm3, [GLOBAL(_const_16w)] movdqa xmm2, [GLOBAL(_const_16w)] psubusw xmm...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
121
180
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:5
punpckhwd xmm2, xmm7 ; [ 4- 7] movdqa xmm3, xmm1 punpcklwd xmm1, xmm7 ; [ 8-11] punpckhwd xmm3, xmm7 ; [12-15] ; accumulator movdqa xmm4, [rdi] movdqa xmm5, [rdi+16] movdqa ...
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
161
212
webmproject/libvpx:vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm:6
ret SECTION_RODATA align 16 _const_3w: times 8 dw 3 align 16 _const_top_bit: times 8 dw 1<<15 align 16 _const_16w times 8 dw 16
x86_64
nasm-like
handwritten
webmproject/libvpx
vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
BSD-3-Clause
3ee6db6c8110680c051fe7a4dca97bb27474ca00
github
media
https://github.com/webmproject/libvpx/blob/3ee6db6c8110680c051fe7a4dca97bb27474ca00/vp10/encoder/x86/vp9_temporal_filter_apply_sse2.asm
201
212
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:3
strh r7, [r1], r3 add r9, r9, #0x40 usat r8, #16, r8, asr #7 usat r9, #16, r9, asr #7 strh r8, [r1], r3 ; result is transposed and stored ldrneb r6, [r0] ; load source data strh r9, [r1], r3 ldrneb r7, [r0, #1] ldrneb r8,...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/bilinearfilter_v6.asm
81
140
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:4
strh r7, [r1], r3 subs lr, lr, #1 strh r8, [r1], r3 strh r9, [r1], r3 bne bil_width_loop_null_1st subs r12, r12, #1 add r0, r0, r2 ; move to next input line add r11, r11, #2 ; move over to next column mov r1, r11 ...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/bilinearfilter_v6.asm
121
180
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:6
subs r12, r12, #1 add r0, r0, #4 ; update src for next row add r11, r11, #1 mov r1, r11 bne bil_height_loop_2nd ldmia sp!, {r4 - r11, pc} |bil_null_2nd_filter| |bil_height_loop_null_2nd| mov lr, r3, lsr #2 |bil_width_loop_null_2nd| ldr r6,...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/bilinearfilter_v6.asm
201
237
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
458fb8f4911a3f53f0601b883069f844c2e40fa5
github
media
https://github.com/webmproject/libvpx/blob/458fb8f4911a3f53f0601b883069f844c2e40fa5/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:3
strh r7, [r1], r3 add r9, r9, #0x40 usat r8, #16, r8, asr #7 usat r9, #16, r9, asr #7 strh r8, [r1], r3 ; result is transposed and stored ldrneb r6, [r0] ; load source data strh r9, [r1], r3 ldrneb r7, [r0, #1] ldrneb r8,...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
458fb8f4911a3f53f0601b883069f844c2e40fa5
github
media
https://github.com/webmproject/libvpx/blob/458fb8f4911a3f53f0601b883069f844c2e40fa5/vp8/common/arm/armv6/bilinearfilter_v6.asm
81
140
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:4
strh r7, [r1], r3 subs lr, lr, #1 strh r8, [r1], r3 strh r9, [r1], r3 bne bil_width_loop_null_1st subs r12, r12, #1 add r0, r0, r2 ; move to next input line add r11, r11, #2 ; move over to next column mov r1, r11 ...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
458fb8f4911a3f53f0601b883069f844c2e40fa5
github
media
https://github.com/webmproject/libvpx/blob/458fb8f4911a3f53f0601b883069f844c2e40fa5/vp8/common/arm/armv6/bilinearfilter_v6.asm
121
180
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:6
subs r12, r12, #1 add r0, r0, #4 ; update src for next row add r11, r11, #1 mov r1, r11 bne bil_height_loop_2nd ldmia sp!, {r4 - r11, pc} |bil_null_2nd_filter| |bil_height_loop_null_2nd| mov lr, r3, lsr #2 |bil_width_loop_null_2nd| ldr r6,...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
458fb8f4911a3f53f0601b883069f844c2e40fa5
github
media
https://github.com/webmproject/libvpx/blob/458fb8f4911a3f53f0601b883069f844c2e40fa5/vp8/common/arm/armv6/bilinearfilter_v6.asm
201
237
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f
github
media
https://github.com/webmproject/libvpx/blob/e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:2
mov r3, r3, lsl #1 ; height*2 add r3, r3, #2 ; plus 2 to make output buffer 4-bit aligned since height is actually (height+1) mov r11, r1 ; save dst_ptr for each row cmp r5, #128 ; if filter coef = 128, th...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f
github
media
https://github.com/webmproject/libvpx/blob/e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f/vp8/common/arm/armv6/bilinearfilter_v6.asm
41
100
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:3
strh r7, [r1], r3 add r9, r9, #0x40 usat r8, #16, r8, asr #7 usat r9, #16, r9, asr #7 strh r8, [r1], r3 ; result is transposed and stored ldrneb r6, [r0] ; load source data strh r9, [r1], r3 ldrneb r7, [r0, #1] ldrneb r8,...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f
github
media
https://github.com/webmproject/libvpx/blob/e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f/vp8/common/arm/armv6/bilinearfilter_v6.asm
81
140
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:4
add r0, r0, #4 strh r7, [r1], r3 subs lr, lr, #1 strh r8, [r1], r3 strh r9, [r1], r3 bne bil_width_loop_null_1st subs r12, r12, #1 add r0, r0, r2 ; move to next input line add r11, r11, #2 ; move over to next column...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f
github
media
https://github.com/webmproject/libvpx/blob/e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f/vp8/common/arm/armv6/bilinearfilter_v6.asm
121
180
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:5
|bil_height_loop_2nd| ldr r6, [r0] ; load the data ldr r8, [r0, #4] ldrh r10, [r0, #8] mov lr, r3, lsr #2 ; loop counter |bil_width_loop_2nd| pkhtb r7, r6, r8 ; src[1] | src[2] pkhtb r9, r8, r10 ...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f
github
media
https://github.com/webmproject/libvpx/blob/e5aaac24bb9f06ccd44505b0af6116b9ca3bd73f/vp8/common/arm/armv6/bilinearfilter_v6.asm
161
220
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
c2140b8af169a6d93a70efc403a5956f5ec84dba
github
media
https://github.com/webmproject/libvpx/blob/c2140b8af169a6d93a70efc403a5956f5ec84dba/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:2
mov r3, r3, lsl #1 ; output_height*2 add r3, r3, #2 ; plus 2 to make output buffer 4-bit aligned since height is actually (height+1) mov r11, r1 ; save output_ptr for each row cmp r5, #128 ; if filter coef...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
c2140b8af169a6d93a70efc403a5956f5ec84dba
github
media
https://github.com/webmproject/libvpx/blob/c2140b8af169a6d93a70efc403a5956f5ec84dba/vp8/common/arm/armv6/bilinearfilter_v6.asm
41
100
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:4
add r0, r0, #4 strh r7, [r1], r3 subs lr, lr, #1 strh r8, [r1], r3 strh r9, [r1], r3 bne bil_width_loop_null_1st subs r12, r12, #1 add r0, r0, r2 ; move to next input line add r11, r11, #2 ; move over to next column...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
c2140b8af169a6d93a70efc403a5956f5ec84dba
github
media
https://github.com/webmproject/libvpx/blob/c2140b8af169a6d93a70efc403a5956f5ec84dba/vp8/common/arm/armv6/bilinearfilter_v6.asm
121
180
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing projec...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
94c52e4da8a3532989c84f6b0da695dfaeb18449
github
media
https://github.com/webmproject/libvpx/blob/94c52e4da8a3532989c84f6b0da695dfaeb18449/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:1
; ; Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license and patent ; grant that can be found in the LICENSE file in the root of the source ; tree. All contributing project authors may be found in the AUTHORS ; file in the root of the sourc...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
0ea50ce9cb4b65eee6afa1d041fe8beb5abda667
github
media
https://github.com/webmproject/libvpx/blob/0ea50ce9cb4b65eee6afa1d041fe8beb5abda667/vp8/common/arm/armv6/bilinearfilter_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:2
add r3, r3, #2 ; plus 2 to make output buffer 4-bit aligned since height is actually (height+1) mov r11, r1 ; save output_ptr for each row cmp r5, #128 ; if filter coef = 128, then skip the filter beq bil_null_1st_filter ...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
0ea50ce9cb4b65eee6afa1d041fe8beb5abda667
github
media
https://github.com/webmproject/libvpx/blob/0ea50ce9cb4b65eee6afa1d041fe8beb5abda667/vp8/common/arm/armv6/bilinearfilter_v6.asm
41
100
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:3
add r9, r9, #0x40 usat r8, #16, r8, asr #7 usat r9, #16, r9, asr #7 strh r8, [r1], r3 ; result is transposed and stored ldrneb r6, [r0] ; load source data strh r9, [r1], r3 ldrneb r7, [r0, #1] ldrneb r8, [r0, #2] bne bi...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
0ea50ce9cb4b65eee6afa1d041fe8beb5abda667
github
media
https://github.com/webmproject/libvpx/blob/0ea50ce9cb4b65eee6afa1d041fe8beb5abda667/vp8/common/arm/armv6/bilinearfilter_v6.asm
81
140
webmproject/libvpx:vp8/common/arm/armv6/bilinearfilter_v6.asm:4
strh r7, [r1], r3 subs lr, lr, #1 strh r8, [r1], r3 strh r9, [r1], r3 bne bil_width_loop_null_1st subs r12, r12, #1 add r0, r0, r2 ; move to next input line add r11, r11, #2 ; move over to next column mov r1, r11 ...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/bilinearfilter_v6.asm
BSD-3-Clause
0ea50ce9cb4b65eee6afa1d041fe8beb5abda667
github
media
https://github.com/webmproject/libvpx/blob/0ea50ce9cb4b65eee6afa1d041fe8beb5abda667/vp8/common/arm/armv6/bilinearfilter_v6.asm
121
180
webmproject/libvpx:vp8/common/arm/armv6/copymem16x16_v6.asm:1
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing proje...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/copymem16x16_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/copymem16x16_v6.asm
1
60
webmproject/libvpx:vp8/common/arm/armv6/copymem16x16_v6.asm:2
mov r12, #16 copy_mem16x16_1_loop strb r4, [r2] strb r5, [r2, #1] strb r6, [r2, #2] strb r7, [r2, #3] ldrb r4, [r0, #4] ldrb r5, [r0, #5] ldrb r6, [r0, #6] ldrb r7, [r0, #7] subs r12, r12, #1 strb r4, [r2, #4] strb r5, [r2, #5] str...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/copymem16x16_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/copymem16x16_v6.asm
41
100
webmproject/libvpx:vp8/common/arm/armv6/copymem16x16_v6.asm:3
strb r6, [r2, #14] strb r7, [r2, #15] add r2, r2, r3 ldrneb r4, [r0] ldrneb r5, [r0, #1] ldrneb r6, [r0, #2] ldrneb r7, [r0, #3] pld [r0, #31] ; preload for next 16x16 block bne copy_mem16x16_1_loop ldmia sp!, {r4 - r7} ;pop {...
arm
masm-like
handwritten
webmproject/libvpx
vp8/common/arm/armv6/copymem16x16_v6.asm
BSD-3-Clause
6a4b1e59588fa40fec301a5c14680ae66b4afba2
github
media
https://github.com/webmproject/libvpx/blob/6a4b1e59588fa40fec301a5c14680ae66b4afba2/vp8/common/arm/armv6/copymem16x16_v6.asm
81
140