Searched refs:result (Results 1 – 11 of 11) sorted by relevance
20 int result; in read_callback() local25 result = recv(fd, buf, count, MSG_WAITALL); in read_callback()27 if (result == 0) in read_callback()30 return result == count; in read_callback()
379 result = ''381 result = '%s\n' % leading_comment383 result += 'typedef enum _%s { %s\n' % (self.names, trailing_comment)401 result += '\n'.join(enum_values)402 result += '\n}'405 result += ' pb_packed'407 result += ' %s;' % self.names408 return result413 result = '#define _%s_MIN %s\n' % (self.names, sorted_values[0][0])414 result += '#define _%s_MAX %s\n' % (self.names, sorted_values[-1][0])[all …]
51 result = pipe.wait()52 if result == 0:55 print('\033[31m[FAIL]\033[0m Program ' + args[0] + ' returned ' + str(result))56 return result
34 Result result = 1; field
20 reply.result = request_result; in main()
2 # "Out-of-memory condition on repeated field can result in invalid free()"
108 result = process.wait()112 result = process.wait()116 if result != 0:119 …print('\033[31m[FAIL]\033[0m Program ' + str(args) + ' returned ' + str(result) + ' with input '…120 return result
15 // This does result in unnecessarily copying the data around, so for larger
7 # should result in:
173 uint32_t result; in pb_decode_varint32_eof() local191 result = byte; in pb_decode_varint32_eof()197 result = byte & 0x7F; in pb_decode_varint32_eof()209 ((result >> 31) != 0 && byte == sign_extension)); in pb_decode_varint32_eof()218 result |= (uint32_t)(byte & 0x7F) << bitpos; in pb_decode_varint32_eof()230 *dest = result; in pb_decode_varint32_eof()244 uint64_t result = 0; in pb_decode_varint() local254 result |= (uint64_t)(byte & 0x7F) << bitpos; in pb_decode_varint()258 *dest = result; in pb_decode_varint()
84 result = context.TryCompile("int main() {return 0;}", '.c')87 context.Result(result)88 return result