OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WriteULong
(Results
1 - 2
of
2
) sorted by null
/external/sfntly/cpp/src/sfntly/data/
font_output_stream.cc
96
void FontOutputStream::
WriteULong
(int64_t ul) {
104
WriteULong
(l);
108
WriteULong
(f);
112
WriteULong
((date >> 32) & 0xffffffff);
113
WriteULong
(date & 0xffffffff);
writable_font_data.cc
128
int32_t WritableFontData::
WriteULong
(int32_t index, int64_t ul) {
145
return
WriteULong
(index, l);
153
WriteULong
(index, (date >> 32) & 0xffffffff);
154
WriteULong
(index + 4, date & 0xffffffff);
Completed in 2363 milliseconds