/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Renderer.hpp | 330 void setPixelShaderConstantF(unsigned int index, const float value[4], unsigned int count = 1); 331 void setPixelShaderConstantI(unsigned int index, const int value[4], unsigned int count = 1); 332 void setPixelShaderConstantB(unsigned int index, const int *boolean, unsigned int count = 1); 334 void setVertexShaderConstantF(unsigned int index, const float value[4], unsigned int count = 1); 335 void setVertexShaderConstantI(unsigned int index, const int value[4], unsigned int count = 1); 336 void setVertexShaderConstantB(unsigned int index, const int *boolean, unsigned int count = 1); 342 void setClipPlane(unsigned int index, const float plane[4]);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_annotation.cpp | 447 << " members. Largest valid index is " << member_count - 1 << "."; in ValidateMemberDecorate() 515 const uint32_t index = inst->GetOperandAs<uint32_t>(i + 1); in ValidateGroupMemberDecorate() local 524 if (index >= num_struct_members) { in ValidateGroupMemberDecorate() 526 << "Index " << index in ValidateGroupMemberDecorate() 530 << " members. Largest valid index is " << num_struct_members - 1 in ValidateGroupMemberDecorate() 556 const uint32_t index = inst->word(2); in RegisterDecorations() local 564 Decoration(dec_type, dec_params, index)); in RegisterDecorations() 596 const uint32_t index = inst->word(i + 1); in RegisterDecorations() local 598 // that the index is not out of bound. in RegisterDecorations() 599 _.RegisterDecorationsForStructMember(struct_id, index, in RegisterDecorations() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/ |
H A D | uperf.cpp | 327 UPerfFunction* UPerfTest::runIndexedTest( int32_t /*index*/, UBool /*exec*/, const char* & /*name*/, char* /*par*/ ) in runIndexedTest() 331 switch (index) { in runIndexedTest() 344 int32_t index = 0; in runTestLoop() local 356 this->runIndexedTest( index, FALSE, name ); in runTestLoop() 365 UPerfFunction* testFunction = this->runIndexedTest( index, TRUE, name, par ); in runTestLoop() 470 index++; in runTestLoop() 492 int32_t index = 0; in usage() local 495 this->runIndexedTest( index, FALSE, name ); in usage() 499 index++; in usage()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | recursiveTypeReferences1.js | 102 function parse(node: Tree, index: number[] = []): HTMLUListElement { 104 const idx = [...index, i + 1]; 106 html('a', { href: `#${el.id}`, rel: 'noopener', 'data-index': idx.join('.') }, el.textContent!), 188 function parse(node, index) {
189 if (index === void 0) { index = []; }
192 var idx = __spreadArray(__spreadArray([], index, true), [i + 1], false);
194 html('a', { href: "#".concat(el.id), rel: 'noopener', 'data-index': idx.join('.') }, el.textContent),
269 declare function parse(node: Tree, index?: number[]): HTMLUListElement;
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyRepeatedField.java | 105 * RepeatedField.[]=(index, value) 107 * Sets the element at the given index. On out-of-bounds assignments, extends 111 public IRubyObject indexSet(ThreadContext context, IRubyObject index, IRubyObject value) { in indexSet() argument 112 int arrIndex = normalizeArrayIndex(index); in indexSet() 124 * RepeatedField.[](index) => value 126 * Accesses the element at the given index. Returns nil on out-of-bounds 129 public IRubyObject index(ThreadContext context, IRubyObject[] args) { in index() method in RubyRepeatedField 330 protected IRubyObject get(int index) { in get() argument 331 return this.storage.eltInternal(index); in get() 397 private int normalizeArrayIndex(IRubyObject index) { in normalizeArrayIndex() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_btree_navigator_test.cc | 230 for (int index = 0; index < count; ++index) { in TEST_P() 232 size_t offset = index * kCharsPerFlat + char_offset; in TEST_P() 234 ASSERT_THAT(pos1.edge, Eq(flats[index])); in TEST_P() 306 size_t index = (offset + length) / kCharsPerFlat; in TEST_P() local 307 EXPECT_THAT(nav.Current(), Eq(flats[index])); in TEST_P()
|
/third_party/spirv-tools/source/opt/ |
H A D | local_access_chain_convert_pass.cpp | 67 "Expecting the index to be a constant."); in AppendConstantOperands() 70 // index as signed. in AppendConstantOperands() 73 "The index value is too large for a composite insert or extract " in AppendConstantOperands() 186 const auto* index = in Is32BitConstantIndexAccessChain() local 188 int64_t index_value = index->GetSignExtendedValue(); in Is32BitConstantIndexAccessChain() 454 uint32_t index = in AnyIndexIsOutOfBounds() local 458 current_type = type_mgr->GetMemberType(current_type, {index}); in AnyIndexIsOutOfBounds() 465 const analysis::Constant* index, const analysis::Type* type) const { in IsIndexOutOfBounds() 466 if (index == nullptr) { in IsIndexOutOfBounds() 469 return index in IsIndexOutOfBounds() 464 IsIndexOutOfBounds( const analysis::Constant* index, const analysis::Type* type) const IsIndexOutOfBounds() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
H A D | FindPreciseNodes.cpp | 52 void push_back(size_t index) { mChain.push_back(index); } in push_back() argument 88 // For fields of nameless interface blocks, add the field index too. in build() 124 for (size_t index = 0; index < commonSize; ++index) in removePrefix() 126 if (mChain[index] != other.mChain[index]) in removePrefix() 533 // Visit index nodes, each of which should be considered |precise| in its entirety.
|
/applications/standard/app_samples/code/BasicFeature/Native/ArkTSXComponent/entry/src/main/cpp/manager/ |
H A D | plugin_manager.cpp | 129 int index = 0; in ChangeSurface() local 130 if (napi_ok != napi_get_value_bigint_int64(env, args[index++], &surfaceId, &lossless)) { in ChangeSurface() 134 if (napi_ok != napi_get_value_double(env, args[index++], &width)) { in ChangeSurface() 138 if (napi_ok != napi_get_value_double(env, args[index++], &height)) { in ChangeSurface()
|
/applications/standard/calendardata/calendarmanager/napi/src/ |
H A D | napi_queue.cpp | 51 size_t index = argc - 1; in GetCbInfo() local 53 napi_status tyst = napi_typeof(env, argv[index], &type); in GetCbInfo() 55 status = napi_create_reference(env, argv[index], 1, &callbackRef); in GetCbInfo() 57 argc = index; in GetCbInfo()
|
/applications/standard/contacts_data/test/unittest/src/ |
H A D | base_test.cpp | 141 int index = 0; in CheckResultSetList() local 143 OHOS::DataShare::DataShareValuesBucket values = valuesVector[index]; in CheckResultSetList() 146 CheckData(valuesVector[index], resultSet, columnNames[i], testName); in CheckResultSetList() 149 index++; in CheckResultSetList()
|
/third_party/ffmpeg/libavformat/ |
H A D | tta.c | 179 int index = av_index_search_timestamp(st, timestamp, flags); in tta_read_seek() local 180 if (index < 0) in tta_read_seek() 182 if (avio_seek(s->pb, ffstream(st)->index_entries[index].pos, SEEK_SET) < 0) in tta_read_seek() 185 c->currentframe = index; in tta_read_seek()
|
/third_party/gn/src/gn/ |
H A D | hash_table_base.h | 457 size_t index = hash & mask; in NodeLookup() local 460 Node* node = buckets_ + index; in NodeLookup() 470 index = (index + 1) & mask; in NodeLookup()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | AbstractPathValueMapper.java | 38 // optional index separately. Note that this is very sloppy matching and the path string will 143 * having an array index) then the referenced value is assumed to be an existing path whose 218 // If no index is given (e.g. "/foo/bar") then treat it as index 0 (i.e. "/foo/bar[0]"). in parse() 219 int index = m.group(2) != null ? Integer.parseUnsignedInt(m.group(2)) : 0; in parse() 224 checkArgument(index < values.size(), in parse() 225 "index for alias /%s[%s] is out of bounds", path, index); in parse() 230 return values.get(index).resolve(null); in parse()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | utils.h | 275 T& operator[](int index) const { 276 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_); 277 return start_[index];
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | genIndexFilters.bat | 25 # This perl script updates the filters in the transliterator index file. 32 # will have to hand-edit the index file. 34 # This script writes a new index file. The new file has to then be 71 # Convert the index file from Java to C format
|
/third_party/icu/icu4c/source/i18n/ |
H A D | collationdatabuilder.h | 179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32() 180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32() 186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument 187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32() 201 * Sets cond->next to the index of the first new item 202 * and returns the index of the last new item.
|
H A D | double-conversion-utils.h | 288 T& operator[](int index) const { 289 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_); 290 return start_[index];
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-string.c | 292 for (ecma_length_t index = 0; index < args_number; index++) in ecma_builtin_string_object_from_code_point() 294 ecma_value_t to_number_value = ecma_op_to_number (args[index]); in ecma_builtin_string_object_from_code_point()
|
/third_party/jerryscript/jerry-core/vm/ |
H A D | vm-stack.c | 103 for (uint32_t index = vm_stack_top_p[-3]; index < collection_p->item_count; index++) in vm_stack_context_abort() 105 ecma_free_value (buffer_p[index]); in vm_stack_context_abort()
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-printers.cc | 273 for (size_t index = 0; index < len; ++index) { in PrintCharsAsStringTo() 274 const CharType cur = begin[index]; in PrintCharsAsStringTo()
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
H A D | virgl_query.c | 96 unsigned query_type, unsigned index) in virgl_create_query() 122 pipe_to_virgl_query(query_type), index, query->buf, 0); in virgl_create_query() 242 int index, in virgl_get_query_result_resource() 250 virgl_encode_get_query_result_qbo(vctx, query->handle, qbo, (flags & PIPE_QUERY_WAIT), result_type, offset, index); in virgl_get_query_result_resource() 95 virgl_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) virgl_create_query() argument 238 virgl_get_query_result_resource(struct pipe_context *ctx, struct pipe_query *q, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) virgl_get_query_result_resource() argument
|
/third_party/node/lib/ |
H A D | punycode.js | 234 for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) { 236 // `index` is the index of the next character to be consumed. 244 if (index >= inputLength) { 248 const digit = basicToDigit(input.charCodeAt(index++));
|
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | unistd.h | 35 #define __DIAGNOSE_BOS_TRIVIALLY_GE_NO_OVERFLOW(bos_val, index) \ 36 ((__DIAGNOSE_BOS_DYNAMIC_CHECK_IMPL_AND((bos_val), >=, (index), (bos_val) <= (FORTIFY_SSIZE_MAX)) && \ 37 __builtin_constant_p(index) && (index) <= (FORTIFY_SSIZE_MAX)))
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationdatabuilder.h | 179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32() 180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32() 186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument 187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32() 201 * Sets cond->next to the index of the first new item 202 * and returns the index of the last new item.
|