Home
last modified time | relevance | path

Searched refs:result (Results 3326 - 3350 of 20245) sorted by relevance

1...<<131132133134135136137138139140>>...810

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DPluralRules.java1207 public Set<Double> addSamples(Set<Double> result) { in addSamples() argument
1214 result.add(d/(double)item.start.baseFactor); in addSamples()
1217 return result; in addSamples()
1290 List<String> result = new ArrayList<>(); in split()
1295 result.add(source.substring(last,i)); in split()
1300 result.add(source.substring(last,i)); in split()
1302 result.add(source.substring(i,i+1)); in split()
1309 result.add(source.substring(last)); in split()
1311 return result.toArray(new String[result in split()
1698 addRange(StringBuilder result, double lb, double ub, boolean addSeparator) addRange() argument
2293 addSample(String keyword, Number sample, int maxCount, Set<Double> result) addSample() argument
[all...]
/base/useriam/user_auth_framework/frameworks/native/ipc/src/
H A Duser_idm_proxy.cpp104 int32_t result = GENERAL_ERROR; in GetCredentialInfo() local
105 if (!reply.ReadInt32(result)) { in GetCredentialInfo()
106 IAM_LOGE("failed to read result"); in GetCredentialInfo()
108 return result; in GetCredentialInfo()
139 int32_t result = GENERAL_ERROR; in GetSecInfo() local
140 if (!reply.ReadInt32(result)) { in GetSecInfo()
141 IAM_LOGE("failed to read result"); in GetSecInfo()
143 return result; in GetSecInfo()
244 int32_t result = GENERAL_ERROR; in Cancel() local
245 if (!reply.ReadInt32(result)) { in Cancel()
279 int32_t result = GENERAL_ERROR; EnforceDelUser() local
381 int32_t result = remote->SendRequest(code, data, reply, option); SendRequest() local
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_sync_android.c49 int result; member
75 new_mpt->result = mpt->result; in timeline_dup()
85 int result = mpt->result; in timeline_has_signaled() local
90 return (result < 0) ? result : 1; in timeline_has_signaled()
120 snprintf(str, size, "%d(%d)", mpt->order, mpt->result); in pt_value_str()
209 mpt->result = 0; in kbase_sync_pt_alloc()
307 * result ca
310 kbase_sync_signal_pt(struct sync_pt *pt, int result) kbase_sync_signal_pt() argument
343 kbase_sync_fence_out_trigger(struct kbase_jd_atom *katom, int result) kbase_sync_fence_out_trigger() argument
[all...]
/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Ddimension.cpp31 using CalcDimensionFunc = std::function<bool(const CalcDimensionParam& param, double& result)>;
32 bool CalcDimensionNone(const CalcDimensionParam& param, double& result) in CalcDimensionNone() argument
34 result = param.value; in CalcDimensionNone()
38 bool CalcDimensionPx(const CalcDimensionParam& param, double& result) in CalcDimensionPx() argument
40 result = param.value; in CalcDimensionPx()
44 bool CalcDimensionPercent(const CalcDimensionParam& param, double& result) in CalcDimensionPercent() argument
47 result = param.value * param.parentLength; in CalcDimensionPercent()
53 bool CalcDimensionVp(const CalcDimensionParam& param, double& result) in CalcDimensionVp() argument
56 result = param.value * param.vpScale; in CalcDimensionVp()
62 bool CalcDimensionFp(const CalcDimensionParam& param, double& result) in CalcDimensionFp() argument
71 CalcDimensionLpx(const CalcDimensionParam& param, double& result) CalcDimensionLpx() argument
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/package/
H A Dpackage.cpp96 std::string result; in GetStringFromNAPI() local
103 result.reserve(size + NAPI_RETURN_ONE); in GetStringFromNAPI()
104 result.resize(size); in GetStringFromNAPI()
105 if (napi_get_value_string_utf8(env, value, result.data(), (size + NAPI_RETURN_ONE), &size) != napi_ok) { in GetStringFromNAPI()
109 return result; in GetStringFromNAPI()
178 NAPI_CALL_RETURN_VOID(env, napi_get_boolean(env, response.result, &nResult)); in ConvertCheckPackageHasInstalledResponse()
179 NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, hasInstalledResponseObj, "result", nResult)); in ConvertCheckPackageHasInstalledResponse()
191 asyncCallbackInfo->response.result = InnerHasInstalled(asyncCallbackInfo->bundleName); in HasInstalledExecute()
209 napi_value result[ARGS_SIZE_TWO] = { 0 }; in HasInstalledAsyncComplete() local
211 NAPI_AUTO_LENGTH, &result[PARAM in HasInstalledAsyncComplete()
218 napi_value result[ARGS_SIZE_ONE] = { 0 }; HasInstalledAsyncComplete() local
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/shortcut_manager/
H A Dshortcut_manager.cpp70 napi_value result[ARGS_SIZE_ONE] = {0}; in AddDesktopShortcutInfoComplete() local
72 NAPI_CALL_RETURN_VOID(env, napi_get_null(env, &result[ARGS_POS_ZERO])); in AddDesktopShortcutInfoComplete()
74 result[0] = BusinessError::CreateCommonError(env, asyncCallbackInfo->err, ADD_DESKTOP_SHORTCUT_INFO, in AddDesktopShortcutInfoComplete()
77 CommonFunc::NapiReturnDeferred<AddDesktopShortcutInfoCallbackInfo>(env, asyncCallbackInfo, result, ARGS_SIZE_ONE); in AddDesktopShortcutInfoComplete()
150 napi_value result[ARGS_SIZE_ONE] = {0}; in DeleteDesktopShortcutInfoComplete() local
152 NAPI_CALL_RETURN_VOID(env, napi_get_null(env, &result[ARGS_POS_ZERO])); in DeleteDesktopShortcutInfoComplete()
154 result[0] = BusinessError::CreateCommonError(env, asyncCallbackInfo->err, ADD_DESKTOP_SHORTCUT_INFO, in DeleteDesktopShortcutInfoComplete()
158 env, asyncCallbackInfo, result, ARGS_SIZE_ONE); in DeleteDesktopShortcutInfoComplete()
234 napi_value result[ARGS_SIZE_TWO] = {0}; in GetAllDesktopShortcutInfoComplete() local
236 NAPI_CALL_RETURN_VOID(env, napi_get_null(env, &result[ARGS_POS_ZER in GetAllDesktopShortcutInfoComplete()
[all...]
/foundation/multimedia/media_library/frameworks/js/src/
H A Dmedia_asset_edit_data_napi.cpp151 napi_value result = nullptr; in JSGetCompatibleFormat() local
154 napi_get_undefined(env, &result); in JSGetCompatibleFormat()
158 return result; in JSGetCompatibleFormat()
164 napi_create_string_utf8(env, compatibleFormat.c_str(), NAPI_AUTO_LENGTH, &result); in JSGetCompatibleFormat()
168 return result; in JSGetCompatibleFormat()
175 napi_value result = nullptr; in JSGetFormatVersion() local
178 napi_get_undefined(env, &result); in JSGetFormatVersion()
182 return result; in JSGetFormatVersion()
188 napi_create_string_utf8(env, formatVersion.c_str(), NAPI_AUTO_LENGTH, &result); in JSGetFormatVersion()
192 return result; in JSGetFormatVersion()
199 napi_value result = nullptr; JSGetData() local
[all...]
/foundation/resourceschedule/device_standby/services/core/include/
H A Dstandby_service_impl.h131 void ShellDump(const std::vector<std::string>& argsInStr, std::string& result);
132 void ShellDumpInner(const std::vector<std::string>& argsInStr, std::string& result);
167 void DumpUsage(std::string& result);
168 void DumpShowDetailInfo(const std::vector<std::string>& argsInStr, std::string& result);
169 void DumpAllowListInfo(std::string& result);
170 void DumpStandbyConfigInfo(std::string& result);
171 void DumpChangeModeSwitch(const std::vector<std::string>& argsInStr, std::string& result);
172 void DumpEnterSpecifiedState(const std::vector<std::string>& argsInStr, std::string& result);
173 void DumpModifyAllowList(const std::vector<std::string>& argsInStr, std::string& result);
174 void DumpSubScriberObserver(const std::vector<std::string>& argsInStr, std::string& result);
[all...]
/foundation/resourceschedule/work_scheduler/services/zidl/src/
H A Dwork_sched_service_proxy.cpp52 int32_t result = E_PARCEL_OPERATION_FAILED; in StartWork() local
53 READ_PARCEL_WITHOUT_RET(reply, Int32, result); in StartWork()
54 WS_HILOGD("after result : %{public}s ", std::to_string(result).c_str()); in StartWork()
55 return result; in StartWork()
83 int32_t result = E_PARCEL_OPERATION_FAILED; in StopWork() local
84 READ_PARCEL_WITHOUT_RET(reply, Int32, result); in StopWork()
85 return result; in StopWork()
114 int32_t result = E_PARCEL_OPERATION_FAILED; in StopAndCancelWork() local
115 READ_PARCEL_WITHOUT_RET(reply, Int32, result); in StopAndCancelWork()
139 int32_t result = E_PARCEL_OPERATION_FAILED; StopAndClearWorks() local
144 IsLastWorkTimeout(int32_t workId, bool &result) IsLastWorkTimeout() argument
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/
H A Dobject_asset_loader.cpp92 bool result = true; in TransferAssetsAsync()
95 FinishTask(asset.uri, result); in TransferAssetsAsync()
112 result &= success; in TransferAssetsAsync()
113 FinishTask(asset.uri, result); in TransferAssetsAsync()
118 void ObjectAssetLoader::FinishTask(const std::string& uri, bool result) in FinishTask() argument
121 tasks_.ForEach([&uri, &finishedTasks, result](auto& seq, auto& task) { in FinishTask()
124 task.callback(result); in FinishTask()
185 int32_t ObjectAssetsSendListener::OnSendResult(const sptr<AssetObj> &assetObj, int32_t result) in OnSendResult() argument
188 ZLOGE("OnSendResult error! status:%{public}d", result); in OnSendResult()
190 ObjectStore::PUSH_ASSETS, ObjectStore::RADAR_FAILED, result, ObjectStor in OnSendResult() local
199 ObjectStore::PUSH_ASSETS, ObjectStore::RADAR_FAILED, result, ObjectStore::FINISHED); OnSendResult() local
[all...]
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/src/
H A Dvsync_sampler.cpp363 void VSyncSampler::Dump(std::string &result) in Dump() argument
366 result.append("\n-- VSyncSampler --"); in Dump()
367 result += "\nperiod:" + std::to_string(period_); in Dump()
368 result += "\nphase:" + std::to_string(phase_); in Dump()
369 result += "\nreferenceTime:" + std::to_string(referenceTime_); in Dump()
370 result += "\nmodeUpdated:" + std::to_string(modeUpdated_); in Dump()
371 result += "\nhardwareVSyncStatus:" + std::to_string(hardwareVSyncStatus_); in Dump()
372 result += "\nnumSamples:" + std::to_string(numSamples_); in Dump()
373 result += "\nsamples:["; in Dump()
375 result in Dump()
[all...]
/third_party/ffmpeg/libavformat/
H A Dconcat.c136 int result, total = 0; in concat_read() local
142 result = ffurl_read(nodes[i].uc, buf, size); in concat_read()
143 if (result == AVERROR_EOF) { in concat_read()
147 result = 0; in concat_read()
149 if (result < 0) in concat_read()
150 return total ? total : result; in concat_read()
151 total += result; in concat_read()
152 buf += result; in concat_read()
153 size -= result; in concat_read()
156 return total ? total : result; in concat_read()
161 int64_t result; concat_seek() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DVersionInfo.java247 * When this is different, the same tailoring might result
334 VersionInfo result = MAP_.get(key); in getInstance()
335 if (result == null) { in getInstance()
336 result = new VersionInfo(version); in getInstance()
337 VersionInfo tmpvi = MAP_.putIfAbsent(key, result); in getInstance()
339 result = tmpvi; in getInstance()
342 return result; in getInstance()
396 StringBuilder result = new StringBuilder(7); in toString()
397 result.append(getMajor()); in toString()
398 result in toString()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java334 ArrayList<String> result = new ArrayList<String>(); in splitBy()
341 result.add( in splitBy()
347 result.add(fileLine.substring(colStart, len)); in splitBy()
348 return result; in splitBy()
370 StringBuilder result = new StringBuilder(); in isPass()
374 result.append(errorMessage); in isPass()
379 result.append(errorMessage); in isPass()
384 result.append(errorMessage); in isPass()
389 result.append(errorMessage); in isPass()
394 result in isPass()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DVersionInfo.java203 * When this is different, the same tailoring might result
288 VersionInfo result = MAP_.get(key); in getInstance()
289 if (result == null) { in getInstance()
290 result = new VersionInfo(version); in getInstance()
291 VersionInfo tmpvi = MAP_.putIfAbsent(key, result); in getInstance()
293 result = tmpvi; in getInstance()
296 return result; in getInstance()
397 StringBuilder result = new StringBuilder(7); in toString()
398 result.append(getMajor()); in toString()
399 result in toString()
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DUnicodeSetClosure.java201 String result = source; in get()
202 if (lowerFirst) result = UCharacter.toLowerCase(Locale.US, result); in get()
203 result = Normalizer.normalize(result, mode); in get()
204 if (lowerFirst) result = UCharacter.toLowerCase(Locale.US, result); in get()
205 if (result.equals(source)) return null; in get()
206 return result; in get()
242 String result in close()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDataDrivenNumberFormatTestUtility.java337 ArrayList<String> result = new ArrayList<String>(); in splitBy()
344 result.add( in splitBy()
350 result.add(fileLine.substring(colStart, len)); in splitBy()
351 return result; in splitBy()
373 StringBuilder result = new StringBuilder(); in isPass()
377 result.append(errorMessage); in isPass()
382 result.append(errorMessage); in isPass()
387 result.append(errorMessage); in isPass()
392 result.append(errorMessage); in isPass()
397 result in isPass()
[all...]
/third_party/node/deps/v8/tools/
H A Drun-clang-tidy.py296 result = optparse.OptionParser()
297 result.add_option(
303 result.add_option(
308 result.add_option(
313 result.add_option(
318 result.add_option(
327 full_run_g = optparse.OptionGroup(result, 'Clang-tidy full', '')
336 result.add_option_group(full_run_g)
339 agg_run_g = optparse.OptionGroup(result, 'Clang-tidy aggregate', '')
346 result
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A Danv_utrace.c107 VkResult result; in anv_device_utrace_flush_cmd_buffers() local
116 result = vk_sync_create(&device->vk, &device->physical->sync_syncobj_type, in anv_device_utrace_flush_cmd_buffers()
118 if (result != VK_SUCCESS) in anv_device_utrace_flush_cmd_buffers()
122 result = anv_bo_pool_alloc(&device->utrace_bo_pool, in anv_device_utrace_flush_cmd_buffers()
125 if (result != VK_SUCCESS) in anv_device_utrace_flush_cmd_buffers()
128 result = anv_bo_pool_alloc(&device->utrace_bo_pool, in anv_device_utrace_flush_cmd_buffers()
132 if (result != VK_SUCCESS) in anv_device_utrace_flush_cmd_buffers()
135 result = anv_reloc_list_init(&flush->relocs, &device->vk.alloc); in anv_device_utrace_flush_cmd_buffers()
136 if (result != VK_SUCCESS) in anv_device_utrace_flush_cmd_buffers()
165 result in anv_device_utrace_flush_cmd_buffers()
201 UNUSED VkResult result = anv_utrace_create_ts_buffer() local
248 UNUSED VkResult result = anv_utrace_read_ts() local
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dcanittst.cpp158 //UnicodeString *result = new UnicodeString(it.next()); in TestBasic()
159 UnicodeString result(it.next()); in TestBasic()
160 if (result.isBogus()) { in TestBasic()
163 set->put(result, new UnicodeString(result), status); // Add result to the table in TestBasic()
164 //logln(++counter + ": " + hex.transliterate(result)); in TestBasic()
165 //logln(" = " + name.transliterate(result)); in TestBasic()
222 UnicodeString result = "["; in getReadable() local
231 result in getReadable()
259 UnicodeString result; collectionToString() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderProgramResource.cpp326 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise.
335 bool result = true; in iterate() local
437 result = false; in iterate()
446 result = false; in iterate()
456 result = false; in iterate()
466 result = false; in iterate()
475 result = false; in iterate()
484 result = false; in iterate()
493 result = false; in iterate()
502 result in iterate()
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLMultiContextTest.cpp24 EGLBoolean result = EGL_TRUE; in SafeDestroyContext() local
27 result = eglDestroyContext(display, context); in SafeDestroyContext()
30 return result; in SafeDestroyContext()
58 bool result = false; in chooseConfig() local
75 result = eglChooseConfig(dpy, attribs, config, 1, &count); in chooseConfig()
76 EXPECT_EGL_TRUE(result && (count > 0)); in chooseConfig()
77 return result; in chooseConfig()
82 bool result = false; in createContext() local
86 result = (*context != EGL_NO_CONTEXT); in createContext()
87 EXPECT_TRUE(result); in createContext()
97 bool result = false; createPbufferSurface() local
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dtime.cc92 int64 result = 0; in SecondsSinceCommonEra() local
98 result += kSecondsPer400Years * count_400years; in SecondsSinceCommonEra()
102 result += SecondsPer100Years(year); in SecondsSinceCommonEra()
106 result += SecondsPer4Years(year); in SecondsSinceCommonEra()
110 result += SecondsPerYear(year); in SecondsSinceCommonEra()
116 result += kSecondsPerDay * kDaysSinceJan[month]; in SecondsSinceCommonEra()
118 result += kSecondsPerDay; in SecondsSinceCommonEra()
124 result += kSecondsPerDay * (time.day - 1); in SecondsSinceCommonEra()
125 result += kSecondsPerHour * time.hour + in SecondsSinceCommonEra()
128 return result; in SecondsSinceCommonEra()
147 ParseInt(const char* data, int width, int min_value, int max_value, int* result) ParseInt() argument
276 string result = StringPrintf("%04d-%02d-%02dT%02d:%02d:%02d", FormatTime() local
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuTexLookupVerifier.cpp77 static inline bool isColorValid (const LookupPrecision& prec, const Vec4& ref, const Vec4& result) in isColorValid() argument
79 const Vec4 diff = abs(ref - result); in isColorValid()
83 static inline bool isColorValid (const IntLookupPrecision& prec, const IVec4& ref, const IVec4& result) in isColorValid() argument
85 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result).asUint(), prec.colorThreshold), logicalNot(prec.colorMask))); in isColorValid()
88 static inline bool isColorValid (const IntLookupPrecision& prec, const UVec4& ref, const UVec4& result) in isColorValid() argument
90 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result), prec.colorThreshold), logicalNot(prec.colorMask))); in isColorValid()
213 static bool isInColorBounds (const LookupPrecision& prec, const ColorQuad& quad, const Vec4& result) in isInColorBounds() argument
217 return boolAll(logicalOr(logicalAnd(greaterThanEqual(result, minVal), lessThanEqual(result, maxVal)), logicalNot(prec.colorMask))); in isInColorBounds()
220 static bool isInColorBounds (const LookupPrecision& prec, const ColorQuad& quad0, const ColorQuad& quad1, const Vec4& result) in isInColorBounds() argument
227 isInColorBounds(const LookupPrecision& prec, const ColorLine& line0, const ColorLine& line1, const Vec4& result) isInColorBounds() argument
234 isInColorBounds(const LookupPrecision& prec, const ColorQuad& quad00, const ColorQuad& quad01, const ColorQuad& quad10, const ColorQuad& quad11, const Vec4& result) isInColorBounds() argument
248 isLinearRangeValid(const LookupPrecision& prec, const Vec4& c0, const Vec4& c1, const Vec2& fBounds, const Vec4& result) isLinearRangeValid() argument
287 isBilinearRangeValid(const LookupPrecision& prec, const ColorQuad& quad, const Vec2& xBounds, const Vec2& yBounds, const float searchStep, const Vec4& result) isBilinearRangeValid() argument
315 isTrilinearRangeValid(const LookupPrecision& prec, const ColorQuad& quad0, const ColorQuad& quad1, const Vec2& xBounds, const Vec2& yBounds, const Vec2& zBounds, const float searchStep, const Vec4& result) isTrilinearRangeValid() argument
352 isReductionValid(const LookupPrecision& prec, const Vec4& c0, const Vec4& c1, tcu::Sampler::ReductionMode reductionMode, const Vec4& result) isReductionValid() argument
365 isReductionValid(const LookupPrecision& prec, const ColorQuad& quad, tcu::Sampler::ReductionMode reductionMode, const Vec4& result) isReductionValid() argument
378 isReductionValid(const LookupPrecision& prec, const ColorQuad& quad0, const ColorQuad& quad1, tcu::Sampler::ReductionMode reductionMode, const Vec4& result) isReductionValid() argument
397 is1DTrilinearFilterResultValid(const LookupPrecision& prec, const ColorLine& line0, const ColorLine& line1, const Vec2& xBounds0, const Vec2& xBounds1, const Vec2& zBounds, const float searchStep, const Vec4& result) is1DTrilinearFilterResultValid() argument
434 is2DTrilinearFilterResultValid(const LookupPrecision& prec, const ColorQuad& quad0, const ColorQuad& quad1, const Vec2& xBounds0, const Vec2& yBounds0, const Vec2& xBounds1, const Vec2& yBounds1, const Vec2& zBounds, const float searchStep, const Vec4& result) is2DTrilinearFilterResultValid() argument
487 is3DTrilinearFilterResultValid(const LookupPrecision& prec, const ColorQuad& quad00, const ColorQuad& quad01, const ColorQuad& quad10, const ColorQuad& quad11, const Vec2& xBounds0, const Vec2& yBounds0, const Vec2& zBounds0, const Vec2& xBounds1, const Vec2& yBounds1, const Vec2& zBounds1, const Vec2& wBounds, const float searchStep, const Vec4& result) is3DTrilinearFilterResultValid() argument
565 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const float coordX, const int coordY, const Vector<ScalarType, 4>& result) isNearestSampleResultValid() argument
592 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec2& coord, const int coordZ, const Vector<ScalarType, 4>& result) isNearestSampleResultValid() argument
627 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec3& coord, const Vector<ScalarType, 4>& result) isNearestSampleResultValid() argument
667 isLinearSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result) isLinearSampleResultValid() argument
720 isLinearSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result) isLinearSampleResultValid() argument
789 isLinearSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec4& result) isLinearSampleResultValid() argument
869 isNearestMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const float coord, const int coordY, const Vec2& fBounds, const Vec4& result) isNearestMipmapLinearSampleResultValid() argument
905 isNearestMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec2& fBounds, const Vec4& result) isNearestMipmapLinearSampleResultValid() argument
955 isNearestMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec2& fBounds, const Vec4& result) isNearestMipmapLinearSampleResultValid() argument
1018 isLinearMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const float coordX, const int coordY, const Vec2& fBounds, const Vec4& result) isLinearMipmapLinearSampleResultValid() argument
1098 isLinearMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec2& fBounds, const Vec4& result) isLinearMipmapLinearSampleResultValid() argument
1201 isLinearMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec2& fBounds, const Vec4& result) isLinearMipmapLinearSampleResultValid() argument
1329 isLevelSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const Sampler::FilterMode filterMode, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result) isLevelSampleResultValid() argument
1343 isLevelSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const Sampler::FilterMode filterMode, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result) isLevelSampleResultValid() argument
1357 isMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const Sampler::FilterMode levelFilter, const LookupPrecision& prec, const float coordX, const int coordY, const Vec2& fBounds, const Vec4& result) isMipmapLinearSampleResultValid() argument
1373 isMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const Sampler::FilterMode levelFilter, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec2& fBounds, const Vec4& result) isMipmapLinearSampleResultValid() argument
1389 isLookupResultValid(const Texture2DView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
1454 isLookupResultValid(const Texture1DView& texture, const Sampler& sampler, const LookupPrecision& prec, const float coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
1751 isLookupResultValid(const TextureCubeView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
1854 isLookupResultValid(const Texture1DArrayView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
1924 isLookupResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
1994 isLevelSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const Sampler::FilterMode filterMode, const LookupPrecision& prec, const Vec3& coord, const Vec4& result) isLevelSampleResultValid() argument
2007 isMipmapLinearSampleResultValid(const ConstPixelBufferAccess& level0, const ConstPixelBufferAccess& level1, const Sampler& sampler, const Sampler::FilterMode levelFilter, const LookupPrecision& prec, const Vec3& coord, const Vec2& fBounds, const Vec4& result) isMipmapLinearSampleResultValid() argument
2022 isLookupResultValid(const Texture3DView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
2099 isLookupResultValid(const TextureCubeArrayView& texture, const Sampler& sampler, const LookupPrecision& prec, const IVec4& coordBits, const Vec4& coord, const Vec2& lodBounds, const Vec4& result) isLookupResultValid() argument
2325 isLevel1DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const float coordX, const int coordY, const Vec4& result) isLevel1DLookupResultValid() argument
2337 isLevel1DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const IVec4& result) isLevel1DLookupResultValid() argument
2350 isLevel1DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const float coordX, const int coordY, const UVec4& result) isLevel1DLookupResultValid() argument
2363 isLevel2DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec2& coord, const int coordZ, const Vec4& result) isLevel2DLookupResultValid() argument
2375 isLevel2DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const IVec4& result) isLevel2DLookupResultValid() argument
2388 isLevel2DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec2& coord, const int coordZ, const UVec4& result) isLevel2DLookupResultValid() argument
2401 isLevel3DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const LookupPrecision& prec, const Vec3& coord, const Vec4& result) isLevel3DLookupResultValid() argument
2412 isLevel3DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const IVec4& result) isLevel3DLookupResultValid() argument
2424 isLevel3DLookupResultValid(const ConstPixelBufferAccess& access, const Sampler& sampler, TexLookupScaleMode scaleMode, const IntLookupPrecision& prec, const Vec3& coord, const UVec4& result) isLevel3DLookupResultValid() argument
2437 isGatherOffsetsResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec2& coord, int coordZ, int componentNdx, const IVec2 (&offsets)[4], const Vector<ScalarType, 4>& result) isGatherOffsetsResultValid() argument
2479 isGatherOffsetsResultValid(const Texture2DView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec2& coord, int componentNdx, const IVec2 (&offsets)[4], const Vec4& result) isGatherOffsetsResultValid() argument
2490 isGatherOffsetsResultValid(const Texture2DView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec2& coord, int componentNdx, const IVec2 (&offsets)[4], const IVec4& result) isGatherOffsetsResultValid() argument
2501 isGatherOffsetsResultValid(const Texture2DView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec2& coord, int componentNdx, const IVec2 (&offsets)[4], const UVec4& result) isGatherOffsetsResultValid() argument
2513 is2DArrayGatherOffsetsResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const PrecType& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const Vector<ScalarType, 4>& result) is2DArrayGatherOffsetsResultValid() argument
2530 isGatherOffsetsResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const Vec4& result) isGatherOffsetsResultValid() argument
2541 isGatherOffsetsResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const IVec4& result) isGatherOffsetsResultValid() argument
2552 isGatherOffsetsResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const UVec4& result) isGatherOffsetsResultValid() argument
2564 isGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const PrecType& prec, const CubeFaceFloatCoords& coords, int componentNdx, const Vector<ScalarType, 4>& result) isGatherResultValid() argument
2621 isCubeGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const PrecType& prec, const Vec3& coord, int componentNdx, const Vector<ScalarType, 4>& result) isCubeGatherResultValid() argument
2647 isGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const LookupPrecision& prec, const Vec3& coord, int componentNdx, const Vec4& result) isGatherResultValid() argument
2657 isGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec3& coord, int componentNdx, const IVec4& result) isGatherResultValid() argument
2667 isGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const IntLookupPrecision& prec, const Vec3& coord, int componentNdx, const UVec4& result) isGatherResultValid() argument
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dtzfmt.cpp226 GMTOffsetField* result = new GMTOffsetField(); in createText() local
227 if (result == NULL) { in createText()
233 result->fText = (UChar*)uprv_malloc((len + 1) * sizeof(UChar)); in createText()
234 if (result->fText == NULL) { in createText()
236 delete result; in createText()
239 u_strncpy(result->fText, text.getBuffer(), len); in createText()
240 result->fText[len] = 0; in createText()
241 result->fType = TEXT; in createText()
243 return result; in createText()
252 GMTOffsetField* result in createTimeField() local
[all...]

Completed in 23 milliseconds

1...<<131132133134135136137138139140>>...810