Home
last modified time | relevance | path

Searched defs:bom (Results 1 – 23 of 23) sorted by relevance

/third_party/node/test/fixtures/wpt/encoding/
Dtextdecoder-byte-order-marks.any.js6 bom: [0xEF, 0xBB, 0xBF], property
11 bom: [0xff, 0xfe], property
16 bom: [0xfe, 0xff], property
/third_party/icu/icu4c/as_is/
Dbomlist.py26 bom=codecs.BOM_UTF8 variable
/third_party/libdrm/radeon/
Dradeon_bo_gem.c60 static struct radeon_bo *bo_open(struct radeon_bo_manager *bom, in bo_open()
292 drm_public void radeon_bo_manager_gem_dtor(struct radeon_bo_manager *bom) in radeon_bo_manager_gem_dtor()
366 radeon_gem_bo_open_prime(struct radeon_bo_manager *bom, int fd_handle, uint32_t size) in radeon_gem_bo_open_prime()
Dradeon_bo_int.h18 struct radeon_bo_manager *bom; member
Dradeon_bo.c45 radeon_bo_open(struct radeon_bo_manager *bom, uint32_t handle, uint32_t size, in radeon_bo_open()
/third_party/node/deps/icu-small/source/common/
Ducnv_u32.cpp231 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE() local
334 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local
709 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE() local
820 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local
Ducnv_u16.cpp74 static const char bom[]={ (char)0xfeu, (char)0xffu }; in _UTF16BEFromUnicodeWithOffsets() local
675 static const char bom[]={ (char)0xffu, (char)0xfeu }; in _UTF16LEFromUnicodeWithOffsets() local
/third_party/skia/third_party/externals/icu/source/common/
Ducnv_u32.cpp231 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE() local
334 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local
709 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE() local
820 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local
Ducnv_u16.cpp74 static const char bom[]={ (char)0xfeu, (char)0xffu }; in _UTF16BEFromUnicodeWithOffsets() local
675 static const char bom[]={ (char)0xffu, (char)0xfeu }; in _UTF16LEFromUnicodeWithOffsets() local
/third_party/icu/icu4c/source/common/
Ducnv_u32.cpp231 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE() local
334 static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu }; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local
709 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE() local
820 static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 }; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local
Ducnv_u16.cpp74 static const char bom[]={ (char)0xfeu, (char)0xffu }; in _UTF16BEFromUnicodeWithOffsets() local
675 static const char bom[]={ (char)0xffu, (char)0xfeu }; in _UTF16LEFromUnicodeWithOffsets() local
/third_party/lame/libmp3lame/
Did3tag.c375 hasUcs2ByteOrderMarker(unsigned short bom) in hasUcs2ByteOrderMarker()
392 toLittleEndian(unsigned short bom, unsigned short c) in toLittleEndian()
526 unsigned short bom = *text++; in maybeLatin1() local
699 unsigned short bom = 0; in toID3v2TagId_ucs2() local
1424 unsigned short const bom = *str; in writeUcs2s() local
1438 unsigned short const bom = *str; in writeLoBytes() local
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetUTF32.java38 private byte[] bom; field in CharsetUTF32
DCharsetUTF16.java38 private byte[] bom; field in CharsetUTF16
/third_party/ffmpeg/libavformat/
Dmicrodvddec.c77 static const char *bom = "\xEF\xBB\xBF"; variable
Dbrstm.c104 int bom, major, minor, codec, chunk; in read_header() local
/third_party/typescript/src/loggedIO/
DloggedIO.ts6 bom?: string; property
/third_party/node/deps/npm/lib/utils/
Dsbom-cyclonedx.js48 const bom = { variable
/third_party/icu/icu4c/source/test/thaitest/
Dthaitest.cpp409 UChar bom = 0xFEFF; in generateFile() local
/third_party/python/PC/
Dlauncher.c1152 BOM *bom; in find_BOM() local
1164 find_terminator(char * buffer, int len, BOM *bom) in find_terminator()
1308 BOM* bom; in maybe_handle_shebang() local
/third_party/json/tests/src/
Dunit-deserialization.cpp878 std::string bom = "\xEF\xBB\xBF"; variable
/third_party/python/Objects/
Dunicodeobject.c5786 Py_UCS4 bom = ((unsigned int)q[3] << 24) | (q[2] << 16) | (q[1] << 8) | q[0]; in PyUnicode_DecodeUTF32Stateful() local
6111 const Py_UCS4 bom = (q[1] << 8) | q[0]; in PyUnicode_DecodeUTF16Stateful() local
/third_party/node/deps/simdutf/
Dsimdutf.cpp5645 std::string to_string(encoding_type bom) { in to_string()
5680 size_t bom_byte_size(encoding_type bom) { in bom_byte_size()