Searched defs:bytesToWrite (Results 1 - 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c213 unsigned short bytesToWrite = 0; local
247 if (ch < (UTF32)0x80) { bytesToWrite = 1;
248 } else if (ch < (UTF32)0x800) { bytesToWrite = 2;
249 } else if (ch < (UTF32)0x10000) { bytesToWrite = 3;
250 } else if (ch < (UTF32)0x110000) { bytesToWrite = 4;
251 } else { bytesToWrite = 3;
255 target += bytesToWrite;
258 target -= bytesToWrite; result = targetExhausted; break;
260 switch (bytesToWrite) { /* note: everything falls through. */
264 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
410 unsigned short bytesToWrite = 0; local
[all...]
/external/google-breakpad/src/common/
H A Dconvert_UTF.c240 unsigned short bytesToWrite = 0; local
274 if (ch < (UTF32)0x80) { bytesToWrite = 1;
275 } else if (ch < (UTF32)0x800) { bytesToWrite = 2;
276 } else if (ch < (UTF32)0x10000) { bytesToWrite = 3;
277 } else if (ch < (UTF32)0x110000) { bytesToWrite = 4;
278 } else { bytesToWrite = 3;
282 target += bytesToWrite;
285 target -= bytesToWrite; result = targetExhausted; break;
287 switch (bytesToWrite) { /* note: everything falls through. */
291 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
433 unsigned short bytesToWrite = 0; local
[all...]
/external/llvm/lib/Support/
H A DConvertUTF.c229 unsigned short bytesToWrite = 0; local
263 if (ch < (UTF32)0x80) { bytesToWrite = 1;
264 } else if (ch < (UTF32)0x800) { bytesToWrite = 2;
265 } else if (ch < (UTF32)0x10000) { bytesToWrite = 3;
266 } else if (ch < (UTF32)0x110000) { bytesToWrite = 4;
267 } else { bytesToWrite = 3;
271 target += bytesToWrite;
274 target -= bytesToWrite; result = targetExhausted; break;
276 switch (bytesToWrite) { /* note: everything falls through. */
280 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
299 unsigned short bytesToWrite = 0; local
[all...]
/external/clang/lib/Lex/
H A DLiteralSupport.cpp425 unsigned short bytesToWrite = 0; local
427 bytesToWrite = 1;
429 bytesToWrite = 2;
431 bytesToWrite = 3;
433 bytesToWrite = 4;
444 ResultBuf += bytesToWrite;
445 switch (bytesToWrite) { // note: everything falls through.
449 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
452 ResultBuf += bytesToWrite;
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 710 milliseconds