Home
last modified time | relevance | path

Searched refs:Byte (Results 1 – 25 of 54) sorted by relevance

123

/openbmc/u-boot/lib/lzma/
H A DLzmaDec.h36 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
50 Byte *dic;
51 const Byte *buf;
64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
130 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
133 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
178 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
195 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
219 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
[all …]
H A DLzmaDec.c134 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal()
144 Byte *dic = p->dic; in LzmaDec_DecodeReal()
152 const Byte *buf = p->buf; in LzmaDec_DecodeReal()
204 dic[dicPos++] = (Byte)symbol; in LzmaDec_DecodeReal()
407 Byte *dest = dic + dicPos; in LzmaDec_DecodeReal()
409 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal()
415 *(dest) = (Byte)*(dest + src); in LzmaDec_DecodeReal()
458 Byte *dic = p->dic; in LzmaDec_WriteRem()
480 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2()
513 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *buf, SizeT inSize) in LzmaDec_TryDummy()
[all …]
H A DTypes.h43 typedef unsigned char Byte; typedef
111 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
116 void (*Write)(void *p, Byte b);
129 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
180 Byte buf[LookToRead_BUF_SIZE];
H A Dlzma.txt361 int LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
362 const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode,
433 int res = LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
434 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode);
511 Byte header[LZMA_PROPS_SIZE + 8];
519 header[headerSize++] = (Byte)(fileSize >> (8 * i));
540 HRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
541 CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
/openbmc/google-ipmi-sys/
H A DREADME.md17 | Byte(s) | Value | Data |
25 | Byte(s) | Value | Data |
37 | Byte(s) | Value | Data |
44 | Byte(s) | Value | Data |
68 | Byte(s) | Value | Data |
75 | Byte(s) | Value | Data …
89 | Byte(s) | Value | Data |
96 | Byte(s) | Value | Data |
109 | Byte(s) | Value | Data |
115 | Byte(s) | Value | Data |
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A Ddeterminism.patch14 c) Sort the Encode::Byte byte_t.fnm file output (and the makefile depends whilst
27 cpan/Encode/Byte/Makefile.PL | 4 ++--
30 diff --git a/cpan/Encode/Byte/Makefile.PL b/cpan/Encode/Byte/Makefile.PL
32 --- a/cpan/Encode/Byte/Makefile.PL
33 +++ b/cpan/Encode/Byte/Makefile.PL
/openbmc/u-boot/include/u-boot/
H A Dzlib.h101 # define Byte z_Byte macro
312 typedef unsigned char Byte; /* 8 bits */ typedef
319 # define Bytef Byte FAR
321 typedef Byte FAR Bytef;
333 typedef Byte const *voidpc;
334 typedef Byte FAR *voidpf;
335 typedef Byte *voidp;
/openbmc/qemu/tests/qtest/fuzz/
H A Dgeneric_fuzz.c344 enum Sizes {Byte, Word, Long, end_sizes}; in op_in() enumerator
361 case Byte: in op_in()
379 enum Sizes {Byte, Word, Long, end_sizes}; in op_out() enumerator
398 case Byte: in op_out()
416 enum Sizes {Byte, Word, Long, Quad, end_sizes}; in op_read() enumerator
434 case Byte: in op_read()
457 enum Sizes {Byte, Word, Long, Quad, end_sizes}; in op_write() enumerator
476 case Byte: in op_write()
499 enum Sizes {Byte, Word, Long, end_sizes}; in op_pci_read() enumerator
514 case Byte: in op_pci_read()
[all …]
/openbmc/phosphor-pid-control/
H A Dipmi.md33 | Byte | Purpose | Value |
46 | Byte | Purpose | Value |
59 | Byte | Purpose | Value |
71 | Byte | Purpose | Value |
/openbmc/u-boot/lib/zlib/
H A Ddeflate.c281 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
305 s->method = (Byte)method;
552 put_byte(s, (Byte)(b >> 8));
553 put_byte(s, (Byte)(b & 0xff));
631 put_byte(s, (Byte)(s->gzhead->time & 0xff));
632 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
633 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
634 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
773 put_byte(s, (Byte)(strm->adler & 0xff));
774 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
[all …]
H A Ddeflate.h104 Byte method; /* STORED (for zip only) or DEFLATED */
/openbmc/u-boot/include/lzma/
H A DLzmaTypes.h15 #define Byte LZByte macro
/openbmc/openbmc-test-automation/lib/
H A Dipmi_client.robot86 ${valueinBytes}= Byte Conversion ${command}
244 Byte Conversion
245 [Documentation] Byte Conversion method receives IPMI RAW commands as
251 ... <netfn Byte> <cmd Byte> <Data Bytes..>
265 Run Keyword if ${index} == 0 Set NetFn Byte ${word}
266 Run Keyword if ${index} == 1 Set Cmd Byte ${word}
267 Run Keyword if ${index} > 1 Set Array Byte ${word}
291 Set NetFn Byte
298 Set Cmd Byte
305 Set Array Byte
[all …]
/openbmc/qemu/target/hexagon/imported/
H A Dldst.idef34 STD_LD_AMODES(loadrub,"Rd32=memub","Load Unsigned Byte",ATTRIBS(A_MEMSIZE_1B,A_LOAD,A_REGWRSIZE_1B)…
35 STD_LD_AMODES(loadrb, "Rd32=memb", "Load signed Byte",ATTRIBS(A_MEMSIZE_1B,A_LOAD),"0",fLOAD(1,1,s,…
116 STD_ST_AMODES(storerb, "Rt32", "memb","Store Byte",ATTRIBS(A_MEMSIZE_1B,A_STORE),"0",fSTORE(1,1,EA,…
122 STD_ST_AMODES(storerbnew, "Nt8.new", "memb","Store Byte",ATTRIBS(A_NOTE_NEWVAL_SLOT0,A_NVSTORE,A_NO…
241 STD_PLD_AMODES(loadrub,"Rd32=memub","Load Unsigned Byte",ATTRIBS(A_ARCHV2,A_MEMSIZE_1B,A_LOAD,A_REG…
242 STD_PLD_AMODES(loadrb, "Rd32=memb", "Load signed Byte",ATTRIBS(A_ARCHV2,A_MEMSIZE_1B,A_LOAD),"0",0,…
272 STD_PST_AMODES(storerb,"Rt32","memb","Store Byte",ATTRIBS(A_ARCHV2,A_MEMSIZE_1B,A_STORE),"0",0,fSTO…
278 STD_PST_AMODES(storerbnew,"Nt8.new","memb","Store Byte",ATTRIBS(A_ARCHV2,A_NOTE_NEWVAL_SLOT0,A_NVST…
323 V4_PSTI_AMODES(storeirb,"#S6","memb","Store Immediate Byte",ATTRIBS(A_ARCHV2,A_ROPS_2,A_MEMSIZE_1B,…
333 V4_STI_AMODES(storeirb,"#S8","memb","Store Immediate Byte",ATTRIBS(A_ARCHV2,A_ROPS_2,A_MEMSIZE_1B,A…
[all …]
/openbmc/openpower-inventory-upload/
H A D.gitignore1 # Byte-compiled / optimized / DLL files
/openbmc/phosphor-power/phosphor-regulators/docs/config_file/
H A Di2c_write_byte.md13 | value | yes | string | Byte value to write expressed in hexadecimal. Must be prefixed wit…
/openbmc/u-boot/lib/
H A Dcrc32.c68 static Byte __efi_runtime_data p[] = { in make_crc_table()
73 for (n = 0; n < sizeof(p)/sizeof(Byte); n++) in make_crc_table()
/openbmc/openbmc/poky/meta/recipes-devtools/perl-cross/files/
H A Ddeterminism.patch14 c) Sort the Encode::Byte byte_t.fnm file output (and the makefile depends whilst
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7635.patch62 /* Byte-swap the pixels if needed. Note that the 24bpp
/openbmc/pyphosphor/
H A D.gitignore23 # Byte-compiled / optimized / DLL files
/openbmc/openbmc/poky/meta/recipes-devtools/cdrtools/cdrtools/
H A D0001-fix-nsectors-exceeds-0xffff-situation.patch48 + // Type : Byte
/openbmc/qemu/docs/interop/
H A Dqcow2.rst19 Byte 0 - 3: magic
255 Byte 0 - 3: Header extension type:
305 Byte 0: Type of feature (select feature bitmap)
330 Byte 0 - 3: nb_bitmaps
359 Byte 0 - 7: Offset into the image file at which the encryption
362 Byte 8 - 15: Length of the written encryption header in bytes.
701 Byte 0 - 7: Offset into the image file at which the L1 table for the
733 Byte 40 - 47: Size of the VM state in bytes. 0 if no VM
737 Byte 48 - 55: Virtual disk size of the snapshot in bytes
739 Byte 56 - 63: icount value which corresponds to
[all …]
/openbmc/qemu/target/hexagon/imported/mmvec/
H A Dext.idef519 "Dual-Vector 2-Element Half x Byte Reduction with Sliding Window Overlap",
524 "Dual-Vector 2-Element Half x Byte Reduction with Sliding Window Overlap",
531 "Dual-Vector 2-Element Half x Byte Reduction with Sliding Window Overlap",
540 "Dual-Vector 2-Element Half x Byte Reduction with Sliding Window Overlap",
763 "Dual Vector Unsigned Byte By Signed Byte 4-way Reduction to Word",
776 "Dual Vector Unsigned Byte By Signed Byte 4-way Reduction with accumulate and saturation to Word",
811 "Dual Vector Unsigned Byte By Signed Byte 4-way Reduction to Word",
824 "Dual Vector Unsigned Byte By Signed Byte 4-way Reduction with accumulate and saturation to Word",
868 "Dual Vector Halfword by Byte 4-Way Reduction to Word",
875 "Dual Vector Halfword by Byte 4-Way Reduction to Word",
[all …]
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_bmc_network_mac.robot113 Configure Less Byte MAC And Verify
121 Configure More Byte MAC And Verify
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_cipher.robot110 [Documentation] Verify Get Cipher Suite Raw Command With One Extra and Less Byte.
114 # Byte

123