Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 68) sorted by relevance

123

/ndk/sources/cxx-stl/gabi++/src/
Ddwarf_helper.cc59 unsigned char byte; in readULEB128() local
62 byte = *p++; in readULEB128()
63 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readULEB128()
65 } while (byte & 0x80); in readULEB128()
73 unsigned char byte; in readSLEB128() local
76 byte = *p++; in readSLEB128()
77 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readSLEB128()
79 } while (byte & 0x80); in readSLEB128()
81 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) { in readSLEB128()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwind-EHABI.cpp221 uint8_t byte = getByte(data, offset++); in _Unwind_VRS_Interpret() local
222 if ((byte & 0x80) == 0) { in _Unwind_VRS_Interpret()
225 if (byte & 0x40) in _Unwind_VRS_Interpret()
226 sp -= ((byte & 0x3f) << 2) + 4; in _Unwind_VRS_Interpret()
228 sp += (byte << 2) + 4; in _Unwind_VRS_Interpret()
231 switch (byte & 0xf0) { in _Unwind_VRS_Interpret()
236 ((byte & 0x0f) << 12) | (getByte(data, offset++) << 4); in _Unwind_VRS_Interpret()
245 uint8_t reg = byte & 0x0f; in _Unwind_VRS_Interpret()
256 uint32_t registers = RegisterMask(4, byte & 0x07); in _Unwind_VRS_Interpret()
257 if (byte & 0x08) in _Unwind_VRS_Interpret()
[all …]
DAddressSpace.hpp196 uint8_t byte; in getSLEB128() local
200 byte = *p++; in getSLEB128()
201 result |= ((byte & 0x7f) << bit); in getSLEB128()
203 } while (byte & 0x80); in getSLEB128()
205 if ((byte & 0x40) != 0) in getSLEB128()
DUnwindRegistersRestore.S181 ; r4 is now a 16-byte aligned pointer into the red zone
182 ; the _vectorRegisters may not be 16-byte aligned so copy via red zone temp buffer
DUnwindRegistersSave.S183 ; r4 is now a 16-byte aligned pointer into the red zone
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_personality.cpp178 unsigned char byte; in readULEB128() local
182 byte = *p++; in readULEB128()
183 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readULEB128()
185 } while (byte & 0x80); in readULEB128()
201 unsigned char byte; in readSLEB128() local
205 byte = *p++; in readSLEB128()
206 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readSLEB128()
208 } while (byte & 0x80); in readSLEB128()
210 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) in readSLEB128()
Dfallback_malloc.ipp22 // Allocates chunks in multiples of four bytes, with a four byte header
24 // as two byte offsets within the heap, rather than (4 or 8 byte) pointers.
/ndk/sources/host-tools/sed-4.2.1/m4/
Dprogtest.m441 # Find out how to test for executable files. Don't use a zero-byte file,
Dlocale-zh.m451 /* Check whether in a month name, no byte in the range 0x80..0x9F occurs.
Dlocale-ja.m454 /* Check whether in a month name, no byte in the range 0x80..0x9F occurs.
Dlocale-fr.m450 one byte long. This excludes the UTF-8 encoding. */
/ndk/sources/host-tools/make-3.81/config/
Dprogtest.m441 # Find out how to test for executable files. Don't use a zero-byte file,
/ndk/docs/text/
DCPU-X86.text83 - Use 16-byte data alignment for faster load and store
DSTANDALONE-TOOLCHAIN.text279 (with the exception of multi-byte encoding/decoding functions and
282 - If you target any prior API level, the size of wchar_t will be 1 byte
/ndk/sources/host-tools/sed-4.2.1/po/
Dnl.po106 msgid "delimiter character is not a single-byte character"
107 msgstr "scheidingsteken is niet één enkele byte"
Del.po104 msgid "delimiter character is not a single-byte character"
105 msgstr "ο χαρακτήρας διαχωριστής έχει μέγεθος μεγαλύτερο από ένα byte"
Dit.po125 msgid "delimiter character is not a single-byte character"
126 msgstr "il carattere delimitatore � multi-byte"
Dpt.po104 msgid "delimiter character is not a single-byte character"
105 msgstr "carácter delimitador não tem um único 'byte'"
Dgl.po105 msgid "delimiter character is not a single-byte character"
106 msgstr "o car�cter delimitador non � un car�cter de byte simple"
Did.po106 msgid "delimiter character is not a single-byte character"
107 msgstr "karakter pembatas bukan sebuah karakter byte-tunggal"
Dca.po104 msgid "delimiter character is not a single-byte character"
105 msgstr "el car�cter delimitador no �s un car�cter d'un byte"
Dvi.po105 msgid "delimiter character is not a single-byte character"
106 msgstr "ký tự định giới không phải là ký tự byte đơn"
Dsed.pot105 msgid "delimiter character is not a single-byte character"
Dsv.po103 msgid "delimiter character is not a single-byte character"
104 msgstr "avgränsningstecknet är inte en ensam byte"
Dzh_CN.po105 msgid "delimiter character is not a single-byte character"

123