HomeSort by relevance Sort by last modified time
    Searched refs:to_append (Results 1 - 2 of 2) sorted by null

  /system/gatekeeper/
gatekeeper_messages.cpp 39 static inline void append_to_buffer(uint8_t **buffer, const SizedBuffer *to_append) {
40 memcpy(*buffer, &to_append->length, sizeof(to_append->length));
41 *buffer += sizeof(to_append->length);
42 if (to_append->length != 0) {
43 memcpy(*buffer, to_append->buffer.get(), to_append->length);
44 *buffer += to_append->length;
  /external/swiftshader/third_party/subzero/bloat/
bloat.py 120 to_append = []
125 to_append += [' [' + s.replacement + '.' + found.group(2) + ']']
127 if len(to_append) > 0:
130 for s in to_append:

Completed in 312 milliseconds