/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/ |
H A D | spvtools_fuzz_fuzzer.cpp | 52 std::unique_ptr<spvtools::opt::IRContext> result; in LLVMFuzzerTestOneInput() 55 &result)) { in LLVMFuzzerTestOneInput() 60 return result; in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | check_symbol_exports.py | 81 result = 0 96 result = 1 97 return result
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationfastlatinbuilder.h | 40 return reinterpret_cast<const uint16_t *>(result.getBuffer()); in getTable() 42 int32_t lengthOfTable() const { return result.length(); } in lengthOfTable() 93 UnicodeString result; member in CollationFastLatinBuilder
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | udateintervalformat.h | 139 * Creates an object to hold the result of a UDateIntervalFormat 225 * @param result 228 * The maximum size of result. 249 UChar* result, 264 * @param result 265 * The UFormattedDateInterval to contain the result of the 276 UFormattedDateInterval* result, 288 * @param result 289 * The UFormattedDateInterval to contain the result of the 301 UFormattedDateInterval* result, [all...] |
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/ |
H A D | OboeStreamCallbackProxy.cpp | 47 int result = clock_gettime(clockId, &time); in getNanoseconds() local 48 if (result < 0) { in getNanoseconds() 49 return result; in getNanoseconds()
|
/third_party/skia/third_party/externals/oboe/samples/shared/ |
H A D | DefaultAudioStreamCallback.h | 130 int result = sched_setaffinity(current_thread_id, sizeof(cpu_set_t), &cpu_set); in setThreadAffinity() local 131 if (result == 0) { in setThreadAffinity() 134 LOGW("Error setting thread affinity. Error no: %d", result); in setThreadAffinity()
|
/third_party/skia/tests/ |
H A D | CodecExactReadTest.cpp | 86 auto result = codec->getPixels(bm.info(), bm.getPixels(), bm.rowBytes()); in DEF_TEST() local 87 if (result != SkCodec::kSuccess) { in DEF_TEST() 88 ERRORF(r, "Failed to getPixels from %s, iteration %i error %i", path, i, result); in DEF_TEST()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/common/ |
H A D | BrotliCommon.java | 66 ByteBuffer result = ByteBuffer.allocateDirect(data.length); in makeNative() 67 result.put(data); in makeNative() 68 return result; in makeNative()
|
/third_party/skia/third_party/externals/dawn/generator/ |
H A D | remove_files.py | 29 result = [] 31 result += [os.path.join(directory, filename) for filename in files] 32 return result
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
H A D | blockingcall.h | 34 RETURN_TYPE result; in call() local 42 result = f(std::forward<Args>(args)...); in call() 51 return result; in call() 92 // auto result = marl::blocking_call(call_blocking_function); 94 // // result holds the return value of the blocking function call.
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | mutator_debugger.cc | 73 auto result = mutator->Mutate(); in main() local 74 if (result.GetStatus() == in main() 79 if (result.GetStatus() == in main()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | parser_impl_test_helper.cc | 44 return writer.result(); in ToString() 54 return writer.result(); in ToString() 79 return writer.result(); in ToString()
|
/third_party/skia/tools/skpbench/ |
H A D | _adb.py | 30 result = subprocess.check_output(self.__invocation + ['shell', cmd]) 32 print(result, file=sys.stderr) 33 return result
|
H A D | skiaperf.py | 80 for result in ('accum', 'median', 'min', 'max'): 82 ['%s_%s_%s' % (result, match.clock, match.metric)] = \ 83 getattr(match, result)
|
/third_party/skia/third_party/externals/freetype/builds/meson/ |
H A D | process_ftoption_h.py | 95 result = "\n".join(new_lines) + "\n" 107 f.write(result) 109 print(result)
|
/third_party/protobuf/python/google/protobuf/ |
H A D | symbol_database.py | 176 result = {} 182 result[desc.full_name] = self._classes[desc] 186 return result
|
/third_party/rust/crates/clap/clap_derive/src/ |
H A D | dummies.rs | 33 fn from_arg_matches(_m: &clap::ArgMatches) -> ::std::result::Result<Self, clap::Error> { in from_arg_matches() 36 fn update_from_arg_matches(&mut self, matches: &clap::ArgMatches) -> ::std::result::Result<(), clap::Error>{ in from_arg_matches() 85 fn from_str(_input: &str, _ignore_case: bool) -> ::std::result::Result<Self, String> { in value_enum()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | randen_detect.cc | 84 uint32_t result = 0; in GetAuxval() local 89 result = static_cast<uint32_t>((*func)(hwcap_type)); in GetAuxval() 92 return result; in GetAuxval()
|
/third_party/skia/docs/examples/ |
H A D | SkImage_to_PPM_binary.cpp | 26 auto result = SkData::MakeUninitialized(s.size() + 3 * src.width() * src.height()); in REG_FIDDLE() local 27 uint8_t* ptr = static_cast<uint8_t*>(result->writable_data()); in REG_FIDDLE() 38 return result; in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | ycbcrimage.cpp | 82 DrawResult result = this->createYCbCrImage(dContext, errorMsg); variable 83 if (result != DrawResult::kOk) { 84 return result;
|
/third_party/spirv-tools/source/fuzz/ |
H A D | transformation_add_constant_boolean.cpp | 66 protobufs::Transformation result; in ToMessage() local 67 *result.mutable_add_constant_boolean() = message_; in ToMessage() 68 return result; in ToMessage()
|
H A D | transformation_add_constant_scalar.cpp | 90 protobufs::Transformation result; in ToMessage() local 91 *result.mutable_add_constant_scalar() = message_; in ToMessage() 92 return result; in ToMessage()
|
H A D | transformation_add_global_undef.cpp | 59 protobufs::Transformation result; in ToMessage() local 60 *result.mutable_add_global_undef() = message_; in ToMessage() 61 return result; in ToMessage()
|
H A D | transformation_add_global_variable.cpp | 38 // The result id must be fresh. in IsApplicable() 111 protobufs::Transformation result; in ToMessage() local 112 *result.mutable_add_global_variable() = message_; in ToMessage() 113 return result; in ToMessage()
|
H A D | transformation_add_image_sample_unused_components.cpp | 110 protobufs::Transformation result; in ToMessage() local 111 *result.mutable_add_image_sample_unused_components() = message_; in ToMessage() 112 return result; in ToMessage()
|