代码搜索:Decode
找到约 10,000 项符合「Decode」的源代码
代码结果 10,000
www.eeworm.com/read/481033/6656017
c decode.c
/****************************************************************************
* *
* cryptlib Datagram Decoding Routines *
* Copyright Peter Gutmann 1996-2008 *
www.eeworm.com/read/287406/6661824
ddb decode.ddb
www.eeworm.com/read/480818/6662275
c decode.c
/*
** FILE : decode.c
** PURPOSE : The functions in this file enable decoding of a binary
** data-file, given the generator polynomial of the code.
** AUTHOR : Bart De
www.eeworm.com/read/479733/6685514
sym decode.sym
www.eeworm.com/read/479733/6685518
vhd decode.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY decode IS
PORT( selsl : IN STD_LOGIC_VECTOR(3 DOWNTO 0);
selsh : IN STD_LOGIC_VECTOR(3 DOWNTO 0);
selml : IN STD_LOGIC_VECTOR(3 DOWNTO 0
www.eeworm.com/read/100124/6685692
c decode.c
/*
* decode.c
*
* CCITT ADPCM decoder
*
* Usage : decode [-3|4|5] [-a|u|l] < infile > outfile
*/
#include
#include "g72x.h"
/*
* Unpack input codes and pass them back as bytes.
* R
www.eeworm.com/read/479610/6689272
a51 decode.a51
; This module is common to all of the examples.
; It decodes the USB Setup Packets and generates appropriate responses.
; Interpretation of Reports is handled by MAIN
;
CSEG
ServiceSetupPacket:
www.eeworm.com/read/478750/6702155
asv decode.asv
function [image]=decode(code)
[code_r,code_c]=size(code);
iamge_r=code(1);
iamge_c=code(2);
image=zeros(iamge_r,iamge_c);
for j=1:64
for i=1:64
buffer(i,j)=code((j-1)*64+i);
en