/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.h | 176 LLVMValueRef *values, LLVMBasicBlockRef *blocks); 192 LLVMValueRef ac_build_varying_gather_values(struct ac_llvm_context *ctx, LLVMValueRef *values, 195 LLVMValueRef ac_build_gather_values_extended(struct ac_llvm_context *ctx, LLVMValueRef *values, 198 LLVMValueRef ac_build_gather_values(struct ac_llvm_context *ctx, LLVMValueRef *values, 396 bool d16 : 1; /* GFX8+: data and return values are 16-bit */ 502 * values across an entire workgroup, while respecting the order of waves.
|
/third_party/node/lib/ |
H A D | _http_outgoing.js | 737 const values = ObjectValues(headersMap); 738 const headers = Array(values.length); 741 for (let i = 0, l = values.length; i < l; i++) { 742 headers[i] = values[i][0];
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_XML.py | 719 # On that pass we have to make that the new values match the 969 for func in self.functions_by_name.values(): 975 for func in self.functions_by_name.values(): 989 return self.functions_by_name.values() 1028 return self.types_by_name.values()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | NumberingScheme.java | 153 * most cases this set just contains the preferred prefix, but alternate values may be present 392 shortcodes.values() in checkFormatConsistency() 427 formats.values()); in checkFormatConsistency() 431 cc, formats.values()); in checkFormatConsistency() 434 cc, formats.values()); in checkFormatConsistency()
|
/third_party/python/Lib/ |
H A D | plistlib.py | 685 # will be serialized as distinct values. 704 values = [] 715 values.append(v) 717 for o in itertools.chain(keys, values): 872 for info in _FORMATS.values():
|
H A D | threading.py | 1492 return list(_active.values()) + list(_limbo.values()) 1503 return list(_active.values()) + list(_limbo.values())
|
/third_party/skia/third_party/externals/angle2/src/libEGL/ |
H A D | libEGL_autogen.cpp | 416 EGLnsecsANDROID *values) in eglGetCompositorTimingANDROID() 419 return EGL_GetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID() 443 EGLnsecsANDROID *values) in eglGetFrameTimestampsANDROID() 446 return EGL_GetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, timestamps, values); in eglGetFrameTimestampsANDROID() 412 eglGetCompositorTimingANDROID(EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values) eglGetCompositorTimingANDROID() argument 438 eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values) eglGetFrameTimestampsANDROID() argument
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | egl_ext_stubs.cpp | 283 EGLnsecsANDROID *values) in GetCompositorTimingANDROID() 287 ANGLE_EGL_TRY_RETURN(thread, eglSurface->getCompositorTiming(numTimestamps, names, values), in GetCompositorTimingANDROID() 326 EGLnsecsANDROID *values) in GetFrameTimestampsANDROID() 331 thread, eglSurface->getFrameTimestamps(frameId, numTimestamps, timestamps, values), in GetFrameTimestampsANDROID() 278 GetCompositorTimingANDROID(Thread *thread, Display *display, Surface *eglSurface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values) GetCompositorTimingANDROID() argument 320 GetFrameTimestampsANDROID(Thread *thread, Display *display, Surface *eglSurface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values) GetFrameTimestampsANDROID() argument
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | libGLESv2.hpp | 208 void (GL_APIENTRY *glVertexAttrib1fv)(GLuint index, const GLfloat* values); 210 void (GL_APIENTRY *glVertexAttrib2fv)(GLuint index, const GLfloat* values); 212 void (GL_APIENTRY *glVertexAttrib3fv)(GLuint index, const GLfloat* values); 214 void (GL_APIENTRY *glVertexAttrib4fv)(GLuint index, const GLfloat* values);
|
/third_party/pulseaudio/src/modules/ |
H A D | module-waveout.c | 435 s->real_volume.values[0] = left; in sink_get_volume_cb() 437 s->real_volume.values[1] = right; in sink_get_volume_cb() 451 vol = (s->real_volume.values[0] * WAVEOUT_MAX_VOLUME / PA_VOLUME_NORM) in sink_set_volume_cb() 452 | (s->real_volume.values[1] * WAVEOUT_MAX_VOLUME / PA_VOLUME_NORM) << 16; in sink_set_volume_cb()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | mix.c | 47 linear[channel] = (int32_t) lrint(pa_sw_volume_to_linear(volume->values[channel]) * 0x10000); in calc_linear_integer_volume() 62 linear[channel] = (float) pa_sw_volume_to_linear(volume->values[channel]); in calc_linear_float_volume() 82 m->linear[channel].i = (int32_t) lrint(pa_sw_volume_to_linear(m->volume.values[channel]) * linear[channel] * 0x10000); in calc_linear_integer_stream_volumes() 101 m->linear[channel].f = (float) (pa_sw_volume_to_linear(m->volume.values[channel]) * linear[channel]); in calc_linear_float_stream_volumes()
|
/third_party/python/Lib/test/ |
H A D | test_with.py | 614 with mock_contextmanager_generator() as list(targets.values())[0][1]: 633 with C() as (list(targets.values())[0][2], list(targets.values())[0][1], list(targets.values())[0][0]):
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction-selector.cc | 22 #include "src/compiler/state-values-utils.h" 526 // operand, so that we take the fast path for optimized-out values. in OperandForDeopt() 598 StateValueList* values, InstructionOperandVector* inputs, in AddOperandToStateValueDescriptor() 604 values->PushArgumentsElements(ArgumentsStateTypeOf(input->op())); in AddOperandToStateValueDescriptor() 613 values->PushArgumentsLength(); in AddOperandToStateValueDescriptor() 625 StateValueList* nested = values->PushRecursiveField(zone, id); in AddOperandToStateValueDescriptor() 638 values->PushDuplicate(id); in AddOperandToStateValueDescriptor() 647 values->PushOptimizedOut(); in AddOperandToStateValueDescriptor() 651 values->PushPlain(type); in AddOperandToStateValueDescriptor() 660 CachedStateValues(Zone* zone, StateValueList* values, size_ 597 AddOperandToStateValueDescriptor( StateValueList* values, InstructionOperandVector* inputs, OperandGenerator* g, StateObjectDeduplicator* deduplicator, Node* input, MachineType type, FrameStateInputKind kind, Zone* zone) AddOperandToStateValueDescriptor() argument 678 CachedStateValuesBuilder(StateValueList* values, InstructionOperandVector* inputs, StateObjectDeduplicator* deduplicator) CachedStateValuesBuilder() argument 710 AddInputsToFrameStateDescriptor( StateValueList* values, InstructionOperandVector* inputs, OperandGenerator* g, StateObjectDeduplicator* deduplicator, Node* node, FrameStateInputKind kind, Zone* zone) AddInputsToFrameStateDescriptor() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context_gl.cpp | 1062 void Context::getPixelMapfv(GLenum map, GLfloat *values) in getPixelMapfv() argument 1067 void Context::getPixelMapuiv(GLenum map, GLuint *values) in getPixelMapuiv() argument 1072 void Context::getPixelMapusv(GLenum map, GLushort *values) in getPixelMapusv() argument 1331 void Context::pixelMapfv(GLenum map, GLsizei mapsize, const GLfloat *values) in pixelMapfv() argument 1336 void Context::pixelMapuiv(GLenum map, GLsizei mapsize, const GLuint *values) in pixelMapuiv() argument 1341 void Context::pixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values) in pixelMapusv() argument 2244 GLint *values) in getActiveSubroutineUniformiv() 2252 GLint *values) in getProgramStageiv() 2286 void Context::patchParameterfv(GLenum pname, const GLfloat *values) in patchParameterfv() argument 3269 void *values) in getnHistogram() 2240 getActiveSubroutineUniformiv(ShaderProgramID program, GLenum shadertype, GLuint index, GLenum pname, GLint *values) getActiveSubroutineUniformiv() argument 2249 getProgramStageiv(ShaderProgramID program, GLenum shadertype, GLenum pname, GLint *values) getProgramStageiv() argument 3264 getnHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values) getnHistogram() argument 3289 getnMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values) getnMinmax() argument 3299 getnPixelMapfv(GLenum map, GLsizei bufSize, GLfloat *values) getnPixelMapfv() argument 3304 getnPixelMapuiv(GLenum map, GLsizei bufSize, GLuint *values) getnPixelMapuiv() argument 3309 getnPixelMapusv(GLenum map, GLsizei bufSize, GLushort *values) getnPixelMapusv() argument [all...] |
/base/update/packaging_tools/ |
H A D | utils.py | 312 head_list = list(head_dict.values())
329 component_list = list(component.values())
561 for each_value in opera_script_file_name_dict.values():
|
/base/useriam/user_auth_framework/test/fuzztest/services/userauthservice_fuzzer/ |
H A D | user_auth_service_fuzzer.cpp | 485 Attributes *values = new Attributes(); in FuzzFillGetPropertyValue() local 486 g_userAuthService.FillGetPropertyValue(authType, keys, *values); in FuzzFillGetPropertyValue() 488 g_userAuthService.FillGetPropertyValue(authType, keys, *values); in FuzzFillGetPropertyValue()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_deshake.c | 97 * Cleaned mean (cuts off 20% of values to remove outliers and then averages) 99 static double clean_mean(double *values, int count) in clean_mean() argument 105 AV_QSORT(values, count, double, cmp); in clean_mean() 108 mean += values[x]; in clean_mean()
|
/third_party/gn/src/base/win/ |
H A D | registry.cc | 27 // Registry values are read as BYTE* but can have char16_t* data whose last 316 std::vector<std::u16string>* values) { in ReadValues() 317 values->clear(); in ReadValues() 340 values->push_back(std::u16string(entry, entry_end)); in ReadValues() 315 ReadValues(const char16_t* name, std::vector<std::u16string>* values) ReadValues() argument
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Currency.java | 416 * Given a key and a locale, returns an array of values for the key for which data 417 * exists. If commonlyUsed is true, these are the values that typically are used 418 * with this locale, otherwise these are all values for which data exists. 421 * The only supported key is "currency", other values return an empty array. 435 * @param key key whose values to look up. the only recognized key is "currency" 437 * @param commonlyUsed if true, return only values that are currently used in the locale. 438 * Otherwise returns all values. 439 * @return an array of values for the given key and the locale. If there is no data, the 863 // length length of the key at the current node; values is the list of all the values mappe 866 handlePrefixMatch(int matchLength, Iterator<CurrencyStringInfo> values) handlePrefixMatch() argument [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | tufmtts.cpp | 461 double values[2] = {1.588, 1.011}; in test10219Plurals() local 477 for (int32_t j = 0; j < UPRV_LENGTHOF(values); ++j) { in test10219Plurals() 490 new TimeUnitAmount(values[j], TimeUnit::UTIMEUNIT_MINUTE, status), status); in test10219Plurals()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | Currency.java | 392 * Given a key and a locale, returns an array of values for the key for which data 393 * exists. If commonlyUsed is true, these are the values that typically are used 394 * with this locale, otherwise these are all values for which data exists. 397 * The only supported key is "currency", other values return an empty array. 411 * @param key key whose values to look up. the only recognized key is "currency" 413 * @param commonlyUsed if true, return only values that are currently used in the locale. 414 * Otherwise returns all values. 415 * @return an array of values for the given key and the locale. If there is no data, the 829 // length length of the key at the current node; values is the list of all the values mappe 832 handlePrefixMatch(int matchLength, Iterator<CurrencyStringInfo> values) handlePrefixMatch() argument [all...] |
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-globals.h | 87 ECMA_TYPE_DIRECT_STRING = 5, /**< directly encoded string values */ 157 * Mask for directly encoded values 172 * Shift for directly encoded values in ecma_value_t 183 * Simple ecma values 189 * - empty (uninitialized) values 190 * - immutable binding values 191 * - special register or stack values for vm 486 * two type bytes and values are packed together. The memory layout is 550 ecma_property_value_t values[ECMA_PROPERTY_PAIR_ITEM_COUNT]; /**< property value slots */ member 688 ECMA_ITERATOR_VALUES, /**< List only key values */ 1710 jmem_cpointer_t values[ECMA_LIT_STORAGE_VALUE_COUNT]; /**< list of values */ global() member 1719 jmem_cpointer_t values[ECMA_LIT_STORAGE_VALUE_COUNT]; /**< list of values */ global() member [all...] |
/third_party/mesa3d/src/broadcom/simulator/ |
H A D | v3d_simulator.c | 142 uint64_t values[DRM_V3D_MAX_PERF_COUNTERS]; member 440 perfmon->values); in v3d_simulator_perfmon_switch() 772 memcpy((void *)args->values_ptr, perfmon->values, perfmon->ncounters * sizeof(uint64_t)); in v3d_simulator_perfmon_get_values_ioctl()
|
/third_party/node/src/ |
H A D | node_blob.cc | 292 Local<Value> values[] = { in GetDataObject() local 301 values, in GetDataObject() 302 arraysize(values))); in GetDataObject()
|
H A D | node_util.cc | 109 Local<Value> values[2] = { Integer::New(isolate, state) }; in GetPromiseDetails() local 112 values[number_of_values++] = promise->Result(); in GetPromiseDetails() 113 Local<Array> ret = Array::New(isolate, values, number_of_values); in GetPromiseDetails()
|