/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_lite_kconfig_file.py | 37 for index, line in enumerate(self.lines): 40 self.target_index = index 43 vendors.append(index) 47 for index in other_vendors: 48 if not hdf_utils.is_commented_line(self.lines[index], '#'): 49 self.lines[index] = '# %s' % self.lines[index]
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_tnode.c | 49 tnode->pe.index = NGHTTP3_PQ_BAD_INDEX; in nghttp3_tnode_init() 59 assert(tnode->pe.index != NGHTTP3_PQ_BAD_INDEX); in tnode_unschedule() 62 tnode->pe.index = NGHTTP3_PQ_BAD_INDEX; in tnode_unschedule() 66 if (tnode->pe.index == NGHTTP3_PQ_BAD_INDEX) { in nghttp3_tnode_unschedule() 88 if (tnode->pe.index == NGHTTP3_PQ_BAD_INDEX) { in nghttp3_tnode_schedule() 99 tnode->pe.index = NGHTTP3_PQ_BAD_INDEX; in nghttp3_tnode_schedule() 109 return tnode->pe.index != NGHTTP3_PQ_BAD_INDEX; in nghttp3_tnode_is_scheduled()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_struct.h | 102 LLVMValueRef index); 110 LLVMValueRef index); 118 LLVMValueRef index, 127 LLVMValueRef index); 138 LLVMValueRef index, 147 LLVMValueRef index, 159 LLVMValueRef index,
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/ |
H A D | HorizontalMetricsTableBuilder.java | 67 int index = 0; in build() 72 index += data.writeUShort(index, advanceWidth); in build() 73 index += data.writeShort(index, metrics.get(i).lsb); in build() 76 index += data.writeShort(index, metrics.get(i).lsb); in build()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | uniform_buffer_element_descriptor.cpp | 28 for (auto index : indices) { in MakeUniformBufferElementDescriptor() 29 result.add_index(index); in MakeUniformBufferElementDescriptor() 39 first->index().size() == second->index().size() && in operator ()() 40 std::equal(first->index().begin(), first->index().end(), in operator ()() 41 second->index().begin()); in operator ()()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | uniform_buffer_element_descriptor.cpp | 28 for (auto index : indices) { in MakeUniformBufferElementDescriptor() 29 result.add_index(index); in MakeUniformBufferElementDescriptor() 39 first->index().size() == second->index().size() && in operator ()() 40 std::equal(first->index().begin(), first->index().end(), in operator ()() 41 second->index().begin()); in operator ()()
|
/third_party/pulseaudio/src/tests/ |
H A D | mcalign-test.c | 53 c.index = c.length = 0; in main() 56 pa_assert(c.index < pa_memblock_get_length(c.memblock)); in main() 58 l = pa_memblock_get_length(c.memblock) - c.index; in main() 64 if ((r = read(STDIN_FILENO, (uint8_t*) p + c.index, l)) <= 0) { in main() 76 c.index += (size_t) r; in main() 78 if (c.index >= pa_memblock_get_length(c.memblock)) { in main() 90 pa_loop_write(STDOUT_FILENO, (uint8_t*) p + t.index, t.length, NULL); in main()
|
/third_party/spirv-tools/source/fuzz/ |
H A D | uniform_buffer_element_descriptor.cpp | 28 for (auto index : indices) { in MakeUniformBufferElementDescriptor() 29 result.add_index(index); in MakeUniformBufferElementDescriptor() 39 first->index().size() == second->index().size() && in operator ()() 40 std::equal(first->index().begin(), first->index().end(), in operator ()() 41 second->index().begin()); in operator ()()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
H A D | eventhistory.cpp | 27 QVariant EventListModel::data(const QModelIndex &index, int role) const in data() argument 29 if (!index.isValid()) in data() 33 if (index.column() == 0) { in data() 34 if (index.row() >= timeList.size()) in data() 36 return timeList.at(index.row()); in data() 38 if (index.row() >= msgList.size()) in data() 40 return msgList.at(index.row()); in data()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
H A D | eventhistory.cpp | 27 QVariant EventListModel::data(const QModelIndex &index, int role) const in data() argument 29 if (!index.isValid()) in data() 33 if (index.column() == 0) { in data() 34 if (index.row() >= timeList.size()) in data() 36 return timeList.at(index.row()); in data() 38 if (index.row() >= msgList.size()) in data() 40 return msgList.at(index.row()); in data()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_vars_to_ssa.c | 170 assert(deref->strct.index < glsl_get_length(parent->type)); in get_deref_node_recur() 172 if (parent->children[deref->strct.index] == NULL) { in get_deref_node_recur() 173 parent->children[deref->strct.index] = in get_deref_node_recur() 178 return parent->children[deref->strct.index]; in get_deref_node_recur() 181 if (nir_src_is_const(deref->arr.index)) { in get_deref_node_recur() 182 uint32_t index = nir_src_as_uint(deref->arr.index); in get_deref_node_recur() local 187 if (index >= glsl_get_length(parent->type)) in get_deref_node_recur() 190 if (parent->children[index] == NULL) { in get_deref_node_recur() 191 parent->children[index] in get_deref_node_recur() 271 uint32_t index = nir_src_as_uint((*path)->arr.index); foreach_deref_node_worker() local [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | cli-text.c | 56 pa_strbuf_printf(s, " index: %u\n" in pa_module_list_to_string() 61 m->index, in pa_module_list_to_string() 89 " index: %u\n" in pa_client_list_to_string() 91 client->index, in pa_client_list_to_string() 95 pa_strbuf_printf(s, "\towner module: %u\n", client->module->index); in pa_client_list_to_string() 145 " index: %u\n" in pa_card_list_to_string() 148 card->index, in pa_card_list_to_string() 153 pa_strbuf_printf(s, "\towner module: %u\n", card->module->index); in pa_card_list_to_string() 172 pa_strbuf_printf(s, "\t\t%s/#%u: %s\n", sink->name, sink->index, pa_strna(pa_proplist_gets(sink->proplist, PA_PROP_DEVICE_DESCRIPTION))); in pa_card_list_to_string() 178 pa_strbuf_printf(s, "\t\t%s/#%u: %s\n", source->name, source->index, pa_strn in pa_card_list_to_string() [all...] |
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A D | ftbsdf.c | 311 FT_Int x, /* x index of point to check */ in bsdf_is_edge() 312 FT_Int y, /* y index of point to check */ in bsdf_is_edge() 574 FT_Int index; in bsdf_approximate_edge() local 590 index = j * worker->width + i; in bsdf_approximate_edge() 592 if ( bsdf_is_edge( worker->distance_map + index, in bsdf_approximate_edge() 598 ed[index].near = compute_edge_distance( ed + index, in bsdf_approximate_edge() 602 ed[index].dist = VECTOR_LENGTH_16D16( ed[index].near ); in bsdf_approximate_edge() 607 ed[index] in bsdf_approximate_edge() 925 FT_Int index; first_pass() local 994 FT_Int index; second_pass() local 1132 FT_Int index; finalize_sdf() local [all...] |
/third_party/rust/crates/nom/src/bytes/ |
H A D | complete.rs | 265 let res: IResult<_, _, Error> = if let Ok(index) = input.slice_index(idx) { in take_while_m_n() 266 Ok(input.take_split(index)) in take_while_m_n() 275 let res: IResult<_, _, Error> = if let Ok(index) = input.slice_index(n) { in take_while_m_n() 276 Ok(input.take_split(index)) in take_while_m_n() 294 Ok(index) => Ok(input.take_split(index)), in take_while_m_n() 413 Ok(index) => Ok(i.take_split(index)), in take() 446 Some(index) => Ok(i.take_split(index)), in take_until() 647 let mut index = 0; escaped_transform() variables [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dual_blend.h | 15 int index) in util_blend_state_is_dual() 17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) || in util_blend_state_is_dual() 18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) || in util_blend_state_is_dual() 19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) || in util_blend_state_is_dual() 20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor)) in util_blend_state_is_dual() 14 util_blend_state_is_dual(const struct pipe_blend_state *blend, int index) util_blend_state_is_dual() argument
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
H A D | FindFunction.cpp | 20 for (size_t index = 0; index < sequence.size(); ++index) in FindFirstFunctionDefinitionIndex() 22 TIntermNode *node = sequence[index]; in FindFirstFunctionDefinitionIndex() 26 return index; in FindFirstFunctionDefinitionIndex()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | indexSignatureTypeCheck2.js | 3 [index: string]: any 7 var index: any = "hello"; variable 8 ps[index] = 12; 24 var index = "hello";
variable 25 ps[index] = 12;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | State.cpp | 783 void State::setColorMaskIndexed(bool red, bool green, bool blue, bool alpha, GLuint index) in setColorMaskIndexed() argument 785 mBlendStateExt.setColorMaskIndexed(index, red, green, blue, alpha); in setColorMaskIndexed() 912 void State::setBlendIndexed(bool enabled, GLuint index) in setBlendIndexed() argument 915 mBlendStateExt.setEnabledIndexed(index, enabled); in setBlendIndexed() 963 GLuint index) in setBlendFactorsIndexed() 967 mBlendFuncConstantColorDrawBuffers.set(index, hasConstantColor(sourceRGB, destRGB)); in setBlendFactorsIndexed() 968 mBlendFuncConstantAlphaDrawBuffers.set(index, hasConstantAlpha(sourceRGB, destRGB)); in setBlendFactorsIndexed() 972 mBlendStateExt.setFactorsIndexed(index, sourceRGB, destRGB, sourceAlpha, destAlpha); in setBlendFactorsIndexed() 1017 void State::setBlendEquationIndexed(GLenum rgbEquation, GLenum alphaEquation, GLuint index) in setBlendEquationIndexed() argument 1020 mBlendStateExt.setEquationsIndexed(index, rgbEquatio in setBlendEquationIndexed() 959 setBlendFactorsIndexed(GLenum sourceRGB, GLenum destRGB, GLenum sourceAlpha, GLenum destAlpha, GLuint index) setBlendFactorsIndexed() argument 1404 setEnableFeatureIndexed(GLenum feature, bool enabled, GLuint index) setEnableFeatureIndexed() argument 2106 setIndexedBufferBinding(const Context *context, BufferBinding target, GLuint index, Buffer *buffer, GLintptr offset, GLsizeiptr size) setIndexedBufferBinding() argument [all...] |
/base/telephony/cellular_call/services/common/src/ |
H A D | supplement_request_cs.cpp | 25 int32_t SupplementRequestCs::GetClipRequest(int32_t slotId, int32_t index) in GetClipRequest() argument 28 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_CLIP, index); in GetClipRequest() 37 int32_t SupplementRequestCs::SetClirRequest(int32_t slotId, int32_t action, int32_t index) in SetClirRequest() argument 40 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_SET_CALL_CLIR, index); in SetClirRequest() 49 int32_t SupplementRequestCs::GetClirRequest(int32_t slotId, int32_t index) in GetClirRequest() argument 52 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_CLIR, index); in GetClirRequest() 61 int32_t SupplementRequestCs::GetCallTransferRequest(int32_t slotId, int32_t reason, int32_t index) in GetCallTransferRequest() argument 64 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_FORWARD, index); in GetCallTransferRequest() 74 int32_t slotId, const CallTransferParam &callTransferParam, int32_t index) in SetCallTransferRequest() 77 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_SET_CALL_FORWARD, index); in SetCallTransferRequest() 73 SetCallTransferRequest( int32_t slotId, const CallTransferParam &callTransferParam, int32_t index) SetCallTransferRequest() argument 86 GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int32_t index) GetCallRestrictionRequest() argument 99 SetCallRestrictionRequest( int32_t slotId, const std::string &fac, int32_t mode, const std::string &pw, int32_t index) SetCallRestrictionRequest() argument 122 SetBarringPasswordRequest(int32_t slotId, const std::string &restrictionType, int32_t index, const char *oldPassword, const char *newPassword) SetBarringPasswordRequest() argument 137 SetCallWaitingRequest(int32_t slotId, bool activate, int32_t classType, int32_t index) SetCallWaitingRequest() argument 149 GetCallWaitingRequest(int32_t slotId, int32_t index) GetCallWaitingRequest() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | cdxl.c | 164 uint8_t *ptr, *out, index, op; in cdxl_decode_ham6() local 178 index = *ptr++; in cdxl_decode_ham6() 179 op = index >> 4; in cdxl_decode_ham6() 180 index &= 15; in cdxl_decode_ham6() 183 r = new_palette[index] & 0xFF0000; in cdxl_decode_ham6() 184 g = new_palette[index] & 0xFF00; in cdxl_decode_ham6() 185 b = new_palette[index] & 0xFF; in cdxl_decode_ham6() 188 b = index * 0x11; in cdxl_decode_ham6() 191 r = index * 0x11 << 16; in cdxl_decode_ham6() 194 g = index * in cdxl_decode_ham6() 207 uint8_t *ptr, *out, index, op; cdxl_decode_ham8() local [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | cpdtrans.cpp | 137 * @param idSplitPoint the index into id at which the 340 * Returns the transliterator at the given index in this chain. 341 * @param index index into chain, from 0 to <code>getCount() - 1</code> 342 * @return transliterator at the given index 344 const Transliterator& CompoundTransliterator::getTransliterator(int32_t index) const { in getTransliterator() 345 return *trans[index]; in getTransliterator() 478 void CompoundTransliterator::handleTransliterate(Replaceable& text, UTransPosition& index, in handleTransliterate() argument 482 * by preceding transliterators. The start index must be in handleTransliterate() 484 * transliterate the text. The initial contextStart index i in handleTransliterate() [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | cpdtrans.cpp | 137 * @param idSplitPoint the index into id at which the 340 * Returns the transliterator at the given index in this chain. 341 * @param index index into chain, from 0 to <code>getCount() - 1</code> 342 * @return transliterator at the given index 344 const Transliterator& CompoundTransliterator::getTransliterator(int32_t index) const { in getTransliterator() 345 return *trans[index]; in getTransliterator() 478 void CompoundTransliterator::handleTransliterate(Replaceable& text, UTransPosition& index, in handleTransliterate() argument 482 * by preceding transliterators. The start index must be in handleTransliterate() 484 * transliterate the text. The initial contextStart index i in handleTransliterate() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | texgen.c | 93 int index = coord == GL_TEXTURE_GEN_STR_OES ? 0 : (coord - GL_S); in texgenfv() local 147 if (TEST_EQ_4V(unit->ObjectPlane[index], params)) in texgenfv() 150 COPY_4FV(unit->ObjectPlane[index], params); in texgenfv() 169 if (TEST_EQ_4V(unit->EyePlane[index], tmp)) in texgenfv() 172 COPY_4FV(unit->EyePlane[index], tmp); in texgenfv() 198 int index = coord == GL_TEXTURE_GEN_STR_OES ? 0 : (coord - GL_S); in gettexgendv() local 205 COPY_4V(params, unit->ObjectPlane[index]); in gettexgendv() 208 COPY_4V(params, unit->EyePlane[index]); in gettexgendv() 231 int index = coord == GL_TEXTURE_GEN_STR_OES ? 0 : (coord - GL_S); in gettexgenfv() local 242 COPY_4V(params, unit->ObjectPlane[index]); in gettexgenfv() 272 int index = coord == GL_TEXTURE_GEN_STR_OES ? 0 : (coord - GL_S); gettexgeniv() local [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | instr.c | 43 instr->index = block->sched.instr_index++; in gpir_instr_create() 133 gpir_debug("failed %d because of alu slot\n", node->index); in gpir_instr_insert_alu_check() 142 gpir_debug("failed %d because of alu slot\n", node->index); in gpir_instr_insert_alu_check() 196 if (instr->reg0_index != load->index) in gpir_instr_insert_reg0_check() 201 instr->reg0_index = load->index; in gpir_instr_insert_reg0_check() 224 if (instr->reg1_index != load->index) in gpir_instr_insert_reg1_check() 228 instr->reg1_index = load->index; in gpir_instr_insert_reg1_check() 251 if (instr->mem_index != load->index) in gpir_instr_insert_mem_check() 256 instr->mem_index = load->index; in gpir_instr_insert_mem_check() 284 instr->store_index[!i] != store->index) in gpir_instr_insert_store_check() 557 int index = 0; gpir_instr_print_prog() local [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Framebuffer.cpp | 88 void Framebuffer::setColorbuffer(GLenum type, GLuint colorbuffer, GLuint index, GLint level, GLint layer) in setColorbuffer() argument 90 mColorbufferType[index] = (colorbuffer != 0) ? type : GL_NONE; in setColorbuffer() 91 mColorbufferPointer[index] = lookupRenderbuffer(type, colorbuffer, level); in setColorbuffer() 92 mColorbufferLayer[index] = layer; in setColorbuffer() 114 void Framebuffer::setDrawBuffer(GLuint index, GLenum buf) in setDrawBuffer() argument 116 drawBuffer[index] = buf; in setDrawBuffer() 124 GLenum Framebuffer::getDrawBuffer(GLuint index) const in getDrawBuffer() 126 return drawBuffer[index]; in getDrawBuffer() 179 egl::Image *Framebuffer::getRenderTarget(GLuint index) in getRenderTarget() argument 181 if(index < MAX_COLOR_ATTACHMENT in getRenderTarget() 257 getColorbufferType(GLuint index) getColorbufferType() argument 272 getColorbufferName(GLuint index) getColorbufferName() argument 287 getColorbufferLayer(GLuint index) getColorbufferLayer() argument [all...] |