/external/mesa3d/src/gallium/auxiliary/util/ |
u_texture.h | 42 * \param out_str STR cubemap texture coordinates to compute. 43 * \param out_stride Stride of out_str in floats. 47 float *out_str, unsigned out_stride);
|
u_texture.c | 45 float *out_str, unsigned out_stride) 96 out_str[0] = rx; /*s*/ 97 out_str[1] = ry; /*t*/ 98 out_str[2] = rz; /*r*/ 101 out_str += out_stride;
|
/system/core/libcutils/tests/ |
test_str_parms.cpp | 26 char* out_str = str_parms_to_str(str_parms); local 28 ASSERT_STREQ(expected, out_str) << str; 29 free(out_str);
|
/toolchain/binutils/binutils-2.25/opcodes/ |
z8k-dis.c | 285 char out_str[100]; local 287 out_str[0] = 0; 292 strcat (out_str, instr_data->instr_asmsrc); 294 (*info->fprintf_func) (info->stream, "%s", out_str); 528 char out_str[80], tmp_str[25]; local 530 sprintf (out_str, "%s\t", z8k_table[instr_data->tabl_index].name); 536 strcat (out_str, ","); 547 strcat (out_str, tmp_str); 556 strcat (out_str, tmp_str); 565 strcat (out_str, tmp_str) [all...] |
/external/webrtc/webrtc/base/ |
linux_unittest.cc | 63 std::string out_str; local 64 EXPECT_TRUE(proc_info.GetSectionStringValue(0, "vendor_id", &out_str)); 65 LOG(LS_INFO) << "vendor_id: " << out_str; 66 EXPECT_FALSE(out_str.empty());
|
/external/llvm/bindings/python/llvm/ |
disassembler.py | 102 out_str = cast((c_byte * 255)(), c_char_p) 105 c_uint64(pc), out_str, 255) 107 return (result, out_str.value) 123 out_str = cast((c_byte * 255)(), c_char_p) 134 out_str, 255) 139 yield (address, result, out_str.value)
|
/external/libweave/third_party/libuweave/src/ |
macaroon_encoding.c | 47 const uint8_t** out_str, 173 const uint8_t** out_str, 175 if (cbor == NULL || cbor_len == 0 || out_str == NULL || out_str_len == NULL || 180 return blindly_decode_str_(cbor, cbor_len, out_str, out_str_len); 185 const uint8_t** out_str, 187 if (cbor == NULL || cbor_len == 0 || out_str == NULL || out_str_len == NULL || 192 return blindly_decode_str_(cbor, cbor_len, out_str, out_str_len); 384 const uint8_t** out_str, 386 if (cbor == NULL || cbor_len == 0 || out_str == NULL || out_str == NULL) [all...] |
/external/libcxx/utils/sym_check/sym_check/ |
util.py | 71 out_str = '' 77 out_str += '%s\n' % sym 79 sys.stdout.write(out_str) 82 f.write(out_str)
|
/external/chromium-trace/catapult/third_party/typ/typ/tests/ |
runner_test.py | 156 out_str = err_str = '' 188 out_str = out.read() 199 self.assertEqual(out_str, '')
|
/external/v8/src/compiler/ |
representation-change.cc | 507 std::ostringstream out_str; local 508 out_str << output_rep << " ("; 509 output_type->PrintTo(out_str, Type::SEMANTIC_DIM); 510 out_str << ")"; 518 node->id(), node->op()->mnemonic(), out_str.str().c_str(),
|
/external/bison/examples/calc++/ |
calc++-scanner.cc | 618 void yyset_out (FILE * out_str ); [all...] |
/external/bison/src/ |
scan-skel.c | 705 void skel_set_out (FILE * out_str ); [all...] |
scan-code.c | 790 void code_set_out (FILE * out_str ); [all...] |
scan-gram.c | [all...] |
/external/drm_hwcomposer/ |
hwcomposer.cpp | 371 std::string out_str = out.str(); local 372 strncpy(buff, out_str.c_str(), 373 std::min((size_t)buff_len, out_str.length() + 1));
|
/external/valgrind/perf/ |
tinycc.c | [all...] |