Searched defs:byte (Results 101 - 125 of 204) sorted by relevance

123456789

/external/chromium_org/third_party/skia/src/effects/
H A DSkColorFilters.cpp530 static SkScalar byte_to_scale(U8CPU byte) { argument
531 if (0xFF == byte) {
535 return byte * 0.00392156862745f;
/external/chromium_org/v8/src/
H A Dunicode.h18 typedef unsigned char byte; typedef in namespace:unibrow
101 // trail produces 1 byte net, because the encoding of the pair is
133 static uchar CalculateValue(const byte* str,
146 // A single surrogate is coded as a 3 byte UTF-8 sequence, but two together
147 // that match are coded as a 4 byte UTF-8 sequence.
153 static inline uchar ValueOf(const byte* str,
/external/libcxxabi/src/Unwind/
H A DAddressSpace.hpp170 uint8_t byte; local
174 byte = *p++;
175 result |= ((byte & 0x7f) << bit);
177 } while (byte & 0x80);
179 if ((byte & 0x40) != 0)
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp177 const uint8 byte = static_cast<uint8>(value.u32 >> bit_count); local
179 const int32 status = writer->Write(&byte, 1);
338 // integer representation of only 1 byte.
404 // We use a single byte for the track number of the block, which
421 if (WriteID(writer, kMkvBlockGroup)) // 1-byte ID size
429 if (WriteID(writer, kMkvBlock)) // 1-byte ID size
459 if (WriteID(writer, kMkvBlockDuration)) // 1-byte ID size
684 for (int i = 0; i < 7; ++i) { // avoid problems with 8-byte values
/external/libvpx/libvpx/vp8/encoder/
H A Dtemporal_filter.c100 int byte = 0; local
107 int src_byte = frame1[byte];
129 byte++;
132 byte += stride - block_size;
230 int byte; local
366 byte = mb_y_offset;
375 dst1[byte] = (unsigned char)pval;
378 byte++;
381 byte += stride - 16;
387 byte
[all...]
/external/lldb/source/Core/
H A DRegisterValue.cpp151 dst_byte_order); // dst byte order
227 GetByteOrder()); // dst byte order
381 m_data.buffer.byte_order) == 0)// dst byte order
428 unsigned byte = 0; local
432 while (!Pair.first.getAsInteger(0, byte) && bytes.size() < byte_size) {
433 bytes.push_back(byte);
474 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %u byte unsigned integer value", uval64, byte_size);
478 error.SetErrorStringWithFormat ("unsupported unsigned integer byte size: %u", byte_size);
483 error.SetErrorStringWithFormat ("unsupported unsigned integer byte size: %u", byte_size);
495 error.SetErrorStringWithFormat ("value 0x%" PRIx64 " is too large to fit in a %u byte signe
[all...]
/external/lzma/xz-embedded/
H A Dxz_dec_stream.c189 uint8_t byte; local
195 byte = in[*in_pos];
198 s->vli |= (vli_type)(byte & 0x7F) << s->pos;
200 if ((byte & 0x80) == 0) {
202 if (byte == 0 && s->pos != 0)
362 * of s->crc. s->pos must be zero when starting to validate the first byte.
546 /* Size of Properties = 1-byte Filter Properties */
608 /* We need one byte of input to continue. */
749 * Since we know that the last input byte never produces any output, we know
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_buffer.cpp133 void CFX_BinaryBuf::AppendFill(FX_BYTE byte, FX_STRSIZE count) argument
139 FXSYS_memset8(m_pBuffer + m_DataSize, byte, count);
490 FX_INT32 IFX_BufferArchive::AppendByte(FX_BYTE byte) argument
492 return AppendBlock(&byte, 1);
/external/skia/src/effects/
H A DSkColorFilters.cpp541 static SkScalar byte_to_scale(U8CPU byte) { argument
542 if (0xFF == byte) {
546 return byte * 0.00392156862745f;
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp318 int byte = readByte(buf, xorOffset + (pixelNo >> 3)); local
321 // Read all of the bits in this byte.
330 colorBit = (byte & m) >> shift;
346 int byte = readByte(buf, xorOffset + (pixelNo >> 1)); local
347 int pixel = (byte >> 4) & 0xF;
354 pixel = byte & 0xF;
/external/tcpdump/
H A Dprint-esp.c185 u_int byte; local
187 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
188 return byte;
H A Dutil.c451 int byte; local
454 for (byte = 0; byte < 16; byte++) {
458 if (mask[byte] == bitmasks[bits]) {
464 if (mask[byte] != 0xff)
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c227 * Add a byte entry to the dict.
232 * @param value The byte value
416 * Add a byte array entry to the dict.
421 * @param value The byte array
422 * @param value_len The length of the byte array, in bytes
527 * Add a single byte array element to a string array dict entry
748 char byte; local
766 dbus_message_iter_get_basic(iter, &byte);
767 entry->bytearray_value[count] = byte;
/external/bluetooth/bluedroid/hci/src/
H A Dhci_h4.c54 ** 2-bytes for opcode and 1 byte for length
59 ** 1-byte for opcode and 1 byte for length
64 ** 2-byte for Handle and 1 byte for length
69 ** 2-byte for Handle and 2 byte for length
434 ** byte of an HCI ACL packet has been received. It checks if
627 one byte from layer_specific for packet type */
680 one byte fro
742 uint8_t byte; local
[all...]
H A Dhci_mct.c56 ** 2-bytes for opcode and 1 byte for length
61 ** 1-byte for opcode and 1 byte for length
66 ** 2-byte for Handle and 1 byte for length
71 ** 2-byte for Handle and 2 byte for length
430 ** byte of an HCI ACL packet has been received. It checks if
716 uint8_t byte; local
724 /* Read one byte t
896 uint8_t byte; local
[all...]
/external/chromium_org/courgette/
H A Dassembly_program.cc27 DEFBYTE, // DEFBYTE <value> - emit a byte literal.
32 DEFBYTES, // Emits any number of byte literals
83 // Emits a single byte.
90 // Emits a single byte.
177 CheckBool AssemblyProgram::EmitByteInstruction(uint8 byte) { argument
178 return Emit(GetByteInstruction(byte));
476 Instruction* AssemblyProgram::GetByteInstruction(uint8 byte) { argument
494 return byte_instruction_cache_[byte];
/external/chromium_org/net/quic/crypto/
H A Dstrike_register.cc75 // <8 bits> crit-byte
206 // Once we have the XOR the of first differing byte in new_other_bits we need
209 // with a byte where all the bits below the most significant one, are set.
500 unsigned byte = i->first / 8; local
501 DCHECK_LE(byte, 0xffu);
505 CHECK_EQ((bytes[byte] & kMasks[bit]) != 0, i->second);
/external/chromium_org/third_party/icu/source/common/
H A Dbytestriebuilder.cpp30 * of the byte sequences, until the BytesTrie is built.
79 // If the stringOffset is non-negative, then the first strings byte contains
248 // Create and byte-serialize the trie for the elements.
309 char byte=elements[i++].charAt(byteIndex, *strings); local
310 while(i<limit && byte==elements[i].charAt(byteIndex, *strings)) {
321 char byte=elements[i++].charAt(byteIndex, *strings); local
322 while(byte==elements[i].charAt(byteIndex, *strings)) {
330 BytesTrieBuilder::indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const {
331 char b=(char)byte;
400 BytesTrieBuilder::write(int32_t byte) { argument
[all...]
H A Ducnv_ext.cpp33 * @return lookup value for the byte, if found; else 0
36 ucnv_extFindToU(const uint32_t *toUSection, int32_t length, uint8_t byte) { argument
40 /* check the input byte against the lowest and highest section bytes */
43 if(byte<start || limit<byte) {
44 return 0; /* the byte is out of range */
49 return UCNV_EXT_TO_U_GET_VALUE(toUSection[byte-start]); /* could be 0 */
53 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0);
56 * Shift byte once instead of each section word and add 0xffffff.
57 * We will compare the shifted/added byte (bbfffff
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_genc.c59 write8(FileStream *out, uint8_t byte, uint32_t column);
62 write32(FileStream *out, uint32_t byte, uint32_t column);
66 write8str(FileStream *out, uint8_t byte, uint32_t column);
183 ".4byte ","",HEX_0X
481 /* first byte */
532 write8(FileStream *out, uint8_t byte, uint32_t column) { argument
536 /* convert the byte value to a string */
537 if(byte>=100) {
538 s[i++]=(char)('0'+byte/100);
539 byte
565 write8str(FileStream *out, uint8_t byte, uint32_t column) argument
[all...]
H A Ducm.c21 * as well as byte sequences with more than 4 bytes or more than one complete
132 * an efficient search for a byte sequence that could be a prefix
133 * of a previously entered byte sequence.
155 /* get pointers to the byte sequences */
476 * for SI/SO tables, a single byte is never a prefix because it
477 * occurs in a separate single-byte state
719 /* illegal byte sequence */
746 uint8_t byte; local
760 (byte=(uint8_t)uprv_strtoul(s+2, &end, 16), end)!=s+4
762 fprintf(stderr, "ucm error: byte mus
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp197 const uint8 byte = static_cast<uint8>(value.u32 >> bit_count); local
199 const int32 status = writer->Write(&byte, 1);
368 // integer representation of only 1 byte.
431 // We use a single byte for the track number of the block, which
448 if (WriteID(writer, kMkvBlockGroup)) // 1-byte ID size
456 if (WriteID(writer, kMkvBlock)) // 1-byte ID size
486 if (WriteID(writer, kMkvBlockDuration)) // 1-byte ID size
695 for (int i = 0; i < 7; ++i) { // avoid problems with 8-byte values
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_temporal_filter.c103 int byte = 0; local
108 int src_byte = frame1[byte];
129 byte++;
132 byte += stride - block_width;
199 int byte; local
310 byte = mb_y_offset;
317 dst1[byte] = (uint8_t)pval;
320 byte++;
322 byte += stride - 16;
328 byte
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_dump.c451 uint8_t byte = *p++; local
453 hex[0] = hex_table[byte >> 4];
454 hex[1] = hex_table[byte & 0xf];
/external/chromium_org/third_party/skia/src/core/
H A DSkScalerContext.cpp353 static inline int convert_8_to_1(unsigned byte) { argument
354 SkASSERT(byte <= 0xFF);
355 return byte >> 7;

Completed in 2761 milliseconds

123456789