Searched refs:bit (Results 1 – 25 of 42) sorted by relevance
12
33 The following tables show the data layout of each type. The 32-bit/64-bit columns indicates the siz…35 | Null | |32-bit|64-bit|42 | Bool | |32-bit|64-bit|49 | String | |32-bit|64-bit|56 | Object | |32-bit|64-bit|63 | Array | |32-bit|64-bit|70 | Number (Int) | |32-bit|64-bit|72 | `int i` | 32-bit signed integer |4 |4 | 77 | Number (UInt) | |32-bit|64-bit|79 | `unsigned u` | 32-bit unsigned integer |4 |4 | [all …]
11 …ed using UTF-8, UTF-16, or UTF-32. When JSON is written in UTF-8, JSON is 8bit compatible. When J…30 * UTF-8: 8-bit variable-width encoding. It maps a code point to 1–4 bytes.31 * UTF-16: 16-bit variable-width encoding. It maps a code point to 1–2 16-bit code units (i.e., 2–4 …32 * UTF-32: 32-bit fixed-width encoding. It directly maps a code point to a single 32-bit code unit (…80 …encoding has a `CharType` template parameter. Actually, it may be a little bit confusing, but each…94 …I](http://en.wikipedia.org/wiki/ASCII), sometimes we would like to write 7-bit ASCII JSON for appl…
56 * Support 32-bit/64-bit signed/unsigned integer and `double` for JSON number type.69 * For UTF-8 string: maximum 11 characters in 32-bit, 15 characters in 64-bit.85 * Each JSON value occupies exactly 16/20 bytes for most 32/64-bit machines (excluding text string).
189 …ers (code units) may be 8-bit, 16-bit or 32-bit. `AutoUTFInputStream` requires a character type wh…235 …han `EncodedInputStream` and `EncodedOutputStream`. They just incur a little bit runtime overheads.
103 …Some applications use 64-bit unsigned/signed integers. And these integers cannot be converted into…187 …bit signed/unsigned integer to double, it will convert but be aware that it may lose precision. A …211 …asic multilingual plane (BMP), UTF-16 encodes those characters with two 16-bit values, which is ca…267 …In the DOM API, each `Value` consumes exactly 16/24 bytes for 32/64-bit architecture respectively.…
182 `unsigned` | 32-bit unsigned integer183 `int` | 32-bit signed integer184 `uint64_t` | 64-bit unsigned integer185 `int64_t` | 64-bit signed integer186 `double` | 64-bit double precision floating point
107 The `parseFlags` are combination of the following bit-flags:240 In RapidJSON, stringifying a DOM with `Writer` may be look a little bit weired.
975 # will make the HTML file larger and loading of large files a bit slower, you
35 def _getIndices(self, bit): argument36 if (bit < 0) or (bit >= self.count):37 raise IndexError("index %d not in range [0,%d)" % (bit, self.count))38 byteIdx = bit / 839 bitIdx = (bit % 8)42 def setBit(self, bit): argument43 byteIdx, bitIdx = self._getIndices(bit)47 def getBit(self, bit): argument48 byteIdx, bitIdx = self._getIndices(bit)
123 final Integer bit = sCalendarDayToBit.get(calendarDay); in fromCalendarDays() local124 if (bit != null) { in fromCalendarDays()125 bits = bits | bit; in fromCalendarDays()146 final Integer bit = sCalendarDayToBit.get(calendarDay); in setBit() local147 if (bit == null) { in setBit()150 return new Weekdays(on ? (mBits | bit) : (mBits & ~bit)); in setBit()167 final Integer bit = sCalendarDayToBit.get(calendarDay); in isBitOn() local168 if (bit == null) { in isBitOn()171 return (mBits & bit) > 0; in isBitOn()
101 val bit = sCalendarDayToBit[calendarDay] in fromCalendarDays() constant102 if (bit != null) { in fromCalendarDays()103 bits = bits or bit in fromCalendarDays()128 val bit = sCalendarDayToBit[calendarDay] ?: return this in setBit() constant129 return Weekdays(if (on) bits or bit else bits and bit.inv()) in setBit()146 val bit = sCalendarDayToBit[calendarDay] in isBitOn() constant148 return bits and bit > 0 in isBitOn()
127 unsigned long long bit = 0; in plugin_get_mime_type_bit() local129 bit = (unsigned long long) (1 << INPUT_MIME_TYPE_PDF); in plugin_get_mime_type_bit()131 bit = (unsigned long long) (1 << INPUT_MIME_TYPE_PCLM); in plugin_get_mime_type_bit()133 bit = (unsigned long long) (1 << INPUT_MIME_TYPE_PWG); in plugin_get_mime_type_bit()135 return bit; in plugin_get_mime_type_bit()
1119 private boolean isFilteredIn(FilterBit bit, boolean vCardType21) { in isFilteredIn() argument1120 final int offset = (bit.pos / 8) + 1; in isFilteredIn()1121 final int bitPos = bit.pos % 8; in isFilteredIn()1122 if (!vCardType21 && bit.onlyCheckV21) { in isFilteredIn()1125 if (vCardType21 && bit.excludeForV21) { in isFilteredIn()1157 for (FilterBit bit : FilterBit.values()) { in apply()1158 if (bit.prop.equals(currentProp)) { in apply()1159 filteredIn = isFilteredIn(bit, vCardType21); in apply()1248 for (PropertyMask bit : PropertyMask.values()) { in checkVCardSelector()1249 if (checkbit(bit.pos, mSelector)) { in checkVCardSelector()[all …]
69 // Because the test_suite target is 64 bit and the test infra is running the 64 bit test70 // suite on cf_x86_phone (32-bit) for coverage.72 // TODO: Remove this target after coverage test switched to 64-bit device.247 // TODO: Remove resolv_test_mts_coverage_defaults after mts coverage switched to 64-bit device.
110 // However, MTS coverage requires 32 bit test binary to run.119 // TODO: Remove resolv_test_mts_coverage_defaults after mts coverage switched to 64-bit device.183 // 32bit apps talk to 64bit resolvers.
28 // The automated test infra ends up building this apex for 64+32-bit and29 // then installs it on a 32-bit-only device. Work around this weirdness30 // by preferring 32-bit.
59 private static boolean hasBit(int metaState, int bit) { in hasBit() argument60 return (metaState & bit) != 0; in hasBit()
38 // Work around testing using a 64-bit test suite on 32-bit test device by
15 * Fix alignment of 64bit platforms (#328)29 * Visual C++ 32-bit compilation error in `diyfp.h` (#317).
40 * RapidJSON is memory friendly. Each JSON value occupies exactly 16/20 bytes for most 32/64-bit mac…54 * Visual C++ 2008/2010/2013 on Windows (32/64-bit)56 * Clang 3.4 on Mac OS X (32/64-bit) and iOS
80 public ImageFetch(int offset, int bit) { in ImageFetch() argument82 imageBit = bit; in ImageFetch()670 int bit = sImageFetchSeq[i].imageBit; in updateImageRequests() local671 if (bit == BIT_FULL_IMAGE && !mNeedFullImage) continue; in updateImageRequests()672 task = startTaskIfNeeded(currentIndex + offset, bit); in updateImageRequests()
1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ...
1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
1dictionary=main:lt,locale=lt,description=Lietuvių,date=1393228136, ...