OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:retcc
(Results
1 - 4
of
4
) sorted by null
/libcore/ojluni/src/main/java/sun/net/www/
ParseUtil.java
105
char[]
retCC
= new char[path.length() * 2 + 16];
113
retCC
[retLen++] = '/';
119
retCC
[retLen++] = c;
122
retLen = escape(
retCC
, c, retLen);
124
retCC
[retLen++] = c;
126
retLen = escape(
retCC
, (char)(0xE0 | ((c >> 12) & 0x0F)), retLen);
127
retLen = escape(
retCC
, (char)(0x80 | ((c >> 6) & 0x3F)), retLen);
128
retLen = escape(
retCC
, (char)(0x80 | ((c >> 0) & 0x3F)), retLen);
130
retLen = escape(
retCC
, (char)(0xC0 | ((c >> 6) & 0x1F)), retLen);
131
retLen = escape(
retCC
, (char)(0x80 | ((c >> 0) & 0x3F)), retLen)
[
all
...]
/external/llvm/lib/Target/Mips/
MipsFastISel.cpp
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
[
all
...]
AArch64FastISel.cpp
[
all
...]
Completed in 3382 milliseconds