/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/ |
H A D | amdgpu_cs.c | 664 int index; in amdgpu_cs_add_buffer() local 676 index = amdgpu_lookup_or_add_slab_buffer(rcs, cs, bo); in amdgpu_cs_add_buffer() 677 if (index < 0) in amdgpu_cs_add_buffer() 680 buffer = &cs->slab_buffers[index]; in amdgpu_cs_add_buffer() 684 index = buffer->slab_real_idx; in amdgpu_cs_add_buffer() 685 buffer = &cs->real_buffers[index]; in amdgpu_cs_add_buffer() 688 index = amdgpu_lookup_or_add_real_buffer(rcs, cs, bo); in amdgpu_cs_add_buffer() 689 if (index < 0) in amdgpu_cs_add_buffer() 692 buffer = &cs->real_buffers[index]; in amdgpu_cs_add_buffer() 697 index in amdgpu_cs_add_buffer() [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | layout_eth_conf.rs | 24 pub fn get_bit(&self, index: usize) -> bool { in get_bit() 25 debug_assert!(index / 8 < self.storage.as_ref().len()); in get_bit() 26 let byte_index = index / 8; in get_bit() 29 7 - (index % 8) in get_bit() 31 index % 8 in get_bit() 37 pub fn set_bit(&mut self, index: usize, val: bool) { in set_bit() 38 debug_assert!(index / 8 < self.storage.as_ref().len()); in set_bit() 39 let byte_index = index / 8; in set_bit() 42 7 - (index % 8) in set_bit() 44 index in set_bit() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingCallableShadersTests.cpp | 917 bool verifyResultData(const tcu::Vec4* resultData, deUint32 index, bool hit, const TestParams& params) in verifyResultData() argument 951 refValue2 = index < 4 ? 35.28f : 8.82f; in verifyResultData() 955 refValue2 = index < 6 ? 35.28f : 8.82f; in verifyResultData() 997 refValue2 = index < 10 ? 35.28f : 8.82f; in verifyResultData() 1001 refValue2 = index < 6 ? 35.28f : 8.82f; in verifyResultData() 1050 " uint index = launchIndex();\n" in getRayGenSource() 1051 " Ray ray = rays[index];\n" in getRayGenSource() 1052 " results[index].value0 = 0;\n" in getRayGenSource() 1053 " results[index].value1 = 0;\n" in getRayGenSource() 1054 " results[index] in getRayGenSource() [all...] |
/third_party/skia/src/pathops/ |
H A D | SkOpSegment.cpp | 518 for (int index = 0; index < i.used(); ++index) { in distSq() 519 if (!between(oppAngle->start()->t(), i[0][index], oppAngle->end()->t())) { in distSq() 522 double testDistSq = testPt.distanceSquared(i.pt(index)); in distSq() 840 for (int index = 0; index < used; ++index) { in isClose() 841 if (cPt.roughlyEqual(i.pt(index))) { in isClose() 1688 for (int index in testForCoincidence() [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 1189 TNode<FixedDoubleArray> array, TNode<IntPtrT> index, Label* if_hole) { 1190 return LoadFixedDoubleArrayElement(array, index, if_hole); 1579 TNode<Uint32T> index) { 1582 Word32Shl(index, Uint32Constant(kExternalPointerIndexShift)); 1605 TNode<Uint32T> index = UncheckedCast<Uint32T>(CallCFunction( 1615 TNode<ExternalPointerT> pointer = ChangeIndexToExternalPointer(index); 1632 TNode<Uint32T> index = ChangeExternalPointerToIndex(encoded); 1636 ChangeUint32ToWord(index), SYSTEM_POINTER_ELEMENTS, 0); 1661 TNode<Uint32T> index = ChangeExternalPointerToIndex(encoded); 1665 ChangeUint32ToWord(index), SYSTEM_POINTER_ELEMENT [all...] |
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
H A D | unwind.c | 95 /* maps a preserved register index (preg_index) to corresponding switch_stack offset: */ 98 unsigned short lru_head; /* index of lead-recently used script */ 99 unsigned short lru_tail; /* index of most-recently used script */ 101 /* index into unw_frame_info for preserved register i */ 113 /* hash table that maps instruction pointer to script index: */ 1231 unsigned short index; in script_lookup() 1247 index = unw.hash[hash(ip)]; in script_lookup() 1248 if (index >= UNW_CACHE_SIZE) in script_lookup() 1251 script = unw.cache + index; in script_lookup() 1273 unw_hash_index_t index; in script_new() 1228 unsigned short index; script_lookup() local 1270 unw_hash_index_t index; script_new() local 2133 long index; unw_remove_unwind_table() local [all...] |
/kernel/linux/linux-5.10/drivers/crypto/ |
H A D | sa2ul.c | 100 * @iv_idx: iv index in psdata 168 * @iv_idx: Initialisation vector index 573 upd_info->enc_size.index = enc_offset >> 2; in sa_format_cmdl_gen() 574 upd_info->enc_offset.index = upd_info->enc_size.index + 1; in sa_format_cmdl_gen() 581 upd_info->enc_iv.index = in sa_format_cmdl_gen() 600 upd_info->auth_size.index = auth_offset >> 2; in sa_format_cmdl_gen() 601 upd_info->auth_offset.index = upd_info->auth_size.index + 1; in sa_format_cmdl_gen() 623 cmdl[upd_info->enc_size.index] in sa_update_cmdl() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/3com/ |
H A D | typhoon.c | 334 typhoon_inc_index(u32 *index, const int count, const int num_entries) in typhoon_inc_index() argument 336 /* Increment a ring index -- we can use this for all rings execept in typhoon_inc_index() 340 *index += count * sizeof(struct cmd_desc); in typhoon_inc_index() 341 *index %= num_entries * sizeof(struct cmd_desc); in typhoon_inc_index() 345 typhoon_inc_cmd_index(u32 *index, const int count) in typhoon_inc_cmd_index() argument 347 typhoon_inc_index(index, count, COMMAND_ENTRIES); in typhoon_inc_cmd_index() 351 typhoon_inc_resp_index(u32 *index, const int count) in typhoon_inc_resp_index() argument 353 typhoon_inc_index(index, count, RESPONSE_ENTRIES); in typhoon_inc_resp_index() 357 typhoon_inc_rxfree_index(u32 *index, const int count) in typhoon_inc_rxfree_index() argument 359 typhoon_inc_index(index, coun in typhoon_inc_rxfree_index() 363 typhoon_inc_tx_index(u32 *index, const int count) typhoon_inc_tx_index() argument 370 typhoon_inc_rx_index(u32 *index, const int count) typhoon_inc_rx_index() argument 1505 typhoon_clean_tx(struct typhoon *tp, struct transmit_ring *txRing, volatile __le32 * index) typhoon_clean_tx() argument 1541 typhoon_tx_complete(struct typhoon *tp, struct transmit_ring *txRing, volatile __le32 * index) typhoon_tx_complete() argument [all...] |
/kernel/linux/linux-6.6/arch/ia64/kernel/ |
H A D | unwind.c | 95 /* maps a preserved register index (preg_index) to corresponding switch_stack offset: */ 98 unsigned short lru_head; /* index of lead-recently used script */ 99 unsigned short lru_tail; /* index of most-recently used script */ 101 /* index into unw_frame_info for preserved register i */ 113 /* hash table that maps instruction pointer to script index: */ 1231 unsigned short index; in script_lookup() 1247 index = unw.hash[hash(ip)]; in script_lookup() 1248 if (index >= UNW_CACHE_SIZE) in script_lookup() 1251 script = unw.cache + index; in script_lookup() 1273 unw_hash_index_t index; in script_new() 1228 unsigned short index; script_lookup() local 1270 unw_hash_index_t index; script_new() local 2133 long index; unw_remove_unwind_table() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/3com/ |
H A D | typhoon.c | 329 typhoon_inc_index(u32 *index, const int count, const int num_entries) in typhoon_inc_index() argument 331 /* Increment a ring index -- we can use this for all rings execept in typhoon_inc_index() 335 *index += count * sizeof(struct cmd_desc); in typhoon_inc_index() 336 *index %= num_entries * sizeof(struct cmd_desc); in typhoon_inc_index() 340 typhoon_inc_cmd_index(u32 *index, const int count) in typhoon_inc_cmd_index() argument 342 typhoon_inc_index(index, count, COMMAND_ENTRIES); in typhoon_inc_cmd_index() 346 typhoon_inc_resp_index(u32 *index, const int count) in typhoon_inc_resp_index() argument 348 typhoon_inc_index(index, count, RESPONSE_ENTRIES); in typhoon_inc_resp_index() 352 typhoon_inc_rxfree_index(u32 *index, const int count) in typhoon_inc_rxfree_index() argument 354 typhoon_inc_index(index, coun in typhoon_inc_rxfree_index() 358 typhoon_inc_tx_index(u32 *index, const int count) typhoon_inc_tx_index() argument 365 typhoon_inc_rx_index(u32 *index, const int count) typhoon_inc_rx_index() argument 1502 typhoon_clean_tx(struct typhoon *tp, struct transmit_ring *txRing, volatile __le32 * index) typhoon_clean_tx() argument 1538 typhoon_tx_complete(struct typhoon *tp, struct transmit_ring *txRing, volatile __le32 * index) typhoon_tx_complete() argument [all...] |
/kernel/linux/linux-6.6/drivers/virtio/ |
H A D | virtio_ring.c | 188 /* Last used index we've seen. 189 * for split ring, it just contains last used index 191 * bits up to VRING_PACKED_EVENT_F_WRAP_CTR include the last used index. 226 static struct virtqueue *__vring_new_virtqueue(unsigned int index, 868 * by writing event index and flush out the write before in virtqueue_get_buf_ctx_split() 915 * either clear the flags bit or point the event index at the next in virtqueue_enable_cb_prepare_split() 948 * either clear the flags bit or point the event index at the next in virtqueue_enable_cb_delayed_split() 949 * entry. Always update the event index to keep code simple. */ in virtqueue_enable_cb_delayed_split() 1142 unsigned int index, in vring_create_virtqueue_split() 1163 vq = __vring_new_virtqueue(index, in vring_create_virtqueue_split() 1141 vring_create_virtqueue_split( unsigned int index, unsigned int num, unsigned int vring_align, struct virtio_device *vdev, bool weak_barriers, bool may_reduce_num, bool context, bool (*notify)(struct virtqueue *), void (*callback)(struct virtqueue *), const char *name, struct device *dma_dev) vring_create_virtqueue_split() argument 2053 vring_create_virtqueue_packed( unsigned int index, unsigned int num, unsigned int vring_align, struct virtio_device *vdev, bool weak_barriers, bool may_reduce_num, bool context, bool (*notify)(struct virtqueue *), void (*callback)(struct virtqueue *), const char *name, struct device *dma_dev) vring_create_virtqueue_packed() argument 2602 __vring_new_virtqueue(unsigned int index, struct vring_virtqueue_split *vring_split, struct virtio_device *vdev, bool weak_barriers, bool context, bool (*notify)(struct virtqueue *), void (*callback)(struct virtqueue *), const char *name, struct device *dma_dev) __vring_new_virtqueue() argument 2665 vring_create_virtqueue( unsigned int index, unsigned int num, unsigned int vring_align, struct virtio_device *vdev, bool weak_barriers, bool may_reduce_num, bool context, bool (*notify)(struct virtqueue *), void (*callback)(struct virtqueue *), const char *name) vring_create_virtqueue() argument 2689 vring_create_virtqueue_dma( unsigned int index, unsigned int num, unsigned int vring_align, struct virtio_device *vdev, bool weak_barriers, bool may_reduce_num, bool context, bool (*notify)(struct virtqueue *), void (*callback)(struct virtqueue *), const char *name, struct device *dma_dev) vring_create_virtqueue_dma() argument 2849 vring_new_virtqueue(unsigned int index, unsigned int num, unsigned int vring_align, struct virtio_device *vdev, bool weak_barriers, bool context, void *pages, bool (*notify)(struct virtqueue *vq), void (*callback)(struct virtqueue *vq), const char *name) vring_new_virtqueue() argument [all...] |
/kernel/linux/linux-6.6/drivers/crypto/ |
H A D | sa2ul.c | 120 * @iv_idx: iv index in psdata 188 * @iv_idx: Initialisation vector index 595 upd_info->enc_size.index = enc_offset >> 2; in sa_format_cmdl_gen() 596 upd_info->enc_offset.index = upd_info->enc_size.index + 1; in sa_format_cmdl_gen() 603 upd_info->enc_iv.index = in sa_format_cmdl_gen() 622 upd_info->auth_size.index = auth_offset >> 2; in sa_format_cmdl_gen() 623 upd_info->auth_offset.index = upd_info->auth_size.index + 1; in sa_format_cmdl_gen() 645 cmdl[upd_info->enc_size.index] in sa_update_cmdl() [all...] |
/kernel/linux/linux-5.10/drivers/scsi/be2iscsi/ |
H A D | be_main.c | 1497 * - index in CQ entry gives the vertical index in beiscsi_hdl_get_handle() 1505 index, pdpdu_cqe); in beiscsi_hdl_get_handle() 1512 index, pdpdu_cqe); in beiscsi_hdl_get_handle() 1545 pasync_handle->index != ci) { in beiscsi_hdl_get_handle() 1546 /* driver bug - if ci does not match async handle index */ in beiscsi_hdl_get_handle() 1552 pasync_handle->index, in beiscsi_hdl_get_handle() 1740 WARN_ON(pasync_handle->index != pi); in beiscsi_hdq_post_handles() 2078 unsigned int sg_len, index; in hwi_write_sgl_v2() local 2090 for (index in hwi_write_sgl_v2() 2173 unsigned int sg_len, index; hwi_write_sgl() local 2605 unsigned int num_cxn_wrb = 0, j, idx = 0, index; beiscsi_init_wrb_handle() local 2708 unsigned int index, idx, num_per_mem, num_async_data; hwi_init_async_pdu_ctx() local 3435 unsigned int index; free_wrb_handles() local 4356 beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt, int *index, int *age) beiscsi_parse_pdu() argument [all...] |
/kernel/linux/linux-6.6/drivers/scsi/be2iscsi/ |
H A D | be_main.c | 1514 * - index in CQ entry gives the vertical index in beiscsi_hdl_get_handle() 1522 index, pdpdu_cqe); in beiscsi_hdl_get_handle() 1529 index, pdpdu_cqe); in beiscsi_hdl_get_handle() 1562 pasync_handle->index != ci) { in beiscsi_hdl_get_handle() 1563 /* driver bug - if ci does not match async handle index */ in beiscsi_hdl_get_handle() 1569 pasync_handle->index, in beiscsi_hdl_get_handle() 1757 WARN_ON(pasync_handle->index != pi); in beiscsi_hdq_post_handles() 2094 unsigned int sg_len, index; in hwi_write_sgl_v2() local 2106 for (index in hwi_write_sgl_v2() 2189 unsigned int sg_len, index; hwi_write_sgl() local 2621 unsigned int num_cxn_wrb = 0, j, idx = 0, index; beiscsi_init_wrb_handle() local 2724 unsigned int index, idx, num_per_mem, num_async_data; hwi_init_async_pdu_ctx() local 3447 unsigned int index; free_wrb_handles() local 4350 beiscsi_parse_pdu(struct iscsi_conn *conn, itt_t itt, int *index, int *age) beiscsi_parse_pdu() argument [all...] |
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | nir_to_dxil.c | 1071 * as the 0-based image index. Use space 1 so that we can keep using these in emit_uav_var() 1695 assert(ssa->index < ctx->num_defs); in store_ssa_def() 1699 if (ctx->defs[ssa->index].chans[chan]) { in store_ssa_def() 1700 const struct dxil_type *expect_type = dxil_value_get_type(ctx->defs[ssa->index].chans[chan]); in store_ssa_def() 1705 ctx->defs[ssa->index].chans[chan] = value; in store_ssa_def() 1754 assert(ssa->index < ctx->num_defs); in get_src_ssa() 1756 assert(ctx->defs[ssa->index].chans[chan]); in get_src_ssa() 1757 return ctx->defs[ssa->index].chans[chan]; in get_src_ssa() 2737 /* Mask coverage with (1 << sample index). Note, done as an AND to handle extrapolation cases. */ in emit_load_sample_mask_in() 2799 const struct dxil_value *index) in emit_gep_for_index() 2798 emit_gep_for_index(struct ntd_context *ctx, const nir_variable *var, const struct dxil_value *index) emit_gep_for_index() argument 3002 const struct dxil_value *zero, *index; emit_store_shared() local 3055 const struct dxil_value *zero, *index; emit_store_scratch() local 3475 const struct dxil_value *index = emit_load_ptr() local 3496 const struct dxil_value *zero, *index; emit_load_shared() local 3532 const struct dxil_value *zero, *index; emit_load_scratch() local 4010 const struct dxil_value *zero, *index; emit_shared_atomic() local 4046 const struct dxil_value *zero, *index; emit_shared_atomic_comp_swap() local 4112 nir_intrinsic_instr* index = nir_src_as_intrinsic(intr->src[0]); emit_load_vulkan_descriptor() local [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cComputeShaderTests.cpp | 1014 const int index = z * local_size_x * local_size_y + y * local_size_x + x; in RunIteration() local 1015 if (!IsEqual(data[index], uvec4(x, y, z, 0))) in RunIteration() 1018 << tcu::TestLog::Message << "Invalid data at offset " << index << tcu::TestLog::EndMessage; in RunIteration() 1150 const GLuint index = glGetUniformBlockIndex(m_program, name); in RunIteration() local 1151 glUniformBlockBinding(m_program, index, i); in RunIteration() 1204 const GLuint index = z * local_size.x() * num_groups.x() * local_size.y() * num_groups.y() + in RunIteration() local 1208 if (!IsEqual(data[index * 12 + i], vec4(static_cast<float>(index * 12 + i)))) in RunIteration() 1211 << index * 12 + i << tcu::TestLog::EndMessage; in RunIteration() 1383 for (GLuint index in RunIteration() 5143 RunIteration(GLuint index) RunIteration() argument 5166 glUniform1ui(glGetUniformLocation(m_program, "g_index"), index); RunIteration() local [all...] |
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrReferenceContext.cpp | 2893 void ReferenceContext::primitiveRestartIndex (deUint32 index) 2897 m_primitiveRestartIndex = index; 3639 void ReferenceContext::vertexAttribPointer (deUint32 index, int rawSize, deUint32 type, deBool normalized, int stride, const void *pointer) 3644 RC_IF_ERROR(index >= (deUint32)m_limits.maxVertexAttribs, GL_INVALID_VALUE, RC_RET_VOID); 3661 vao.m_arrays[index].size = rawSize; 3662 vao.m_arrays[index].stride = stride; 3663 vao.m_arrays[index].type = type; 3664 vao.m_arrays[index].normalized = normalized == GL_TRUE; 3665 vao.m_arrays[index].integer = false; 3666 vao.m_arrays[index] [all...] |
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
H A D | qla_nx2.c | 889 int index; in qla8044_poll_read_list() local 917 index = vha->reset_tmplt.array_index; in qla8044_poll_read_list() 920 vha->reset_tmplt.array[index++] = value; in qla8044_poll_read_list() 921 if (index == QLA8044_MAX_RESET_SEQ_ENTRIES) in qla8044_poll_read_list() 943 int index, entries; in qla8044_process_reset_template() local 950 index = vha->reset_tmplt.seq_index; in qla8044_process_reset_template() 952 for (; (!vha->reset_tmplt.seq_end) && (index < entries); index++) { in qla8044_process_reset_template() 987 "entry = %d\n", __func__, p_hdr->cmd, index); in qla8044_process_reset_template() 995 vha->reset_tmplt.seq_index = index; in qla8044_process_reset_template() 2210 uint32_t read_value, opcode, poll_time, addr, index; qla8044_minidump_process_control() local 2458 qla8044_mark_entry_skipped(struct scsi_qla_host *vha, struct qla8044_minidump_entry_hdr *entry_hdr, int index) qla8044_mark_entry_skipped() argument [all...] |
/kernel/linux/linux-6.6/drivers/scsi/qla2xxx/ |
H A D | qla_nx2.c | 889 int index; in qla8044_poll_read_list() local 917 index = vha->reset_tmplt.array_index; in qla8044_poll_read_list() 920 vha->reset_tmplt.array[index++] = value; in qla8044_poll_read_list() 921 if (index == QLA8044_MAX_RESET_SEQ_ENTRIES) in qla8044_poll_read_list() 943 int index, entries; in qla8044_process_reset_template() local 950 index = vha->reset_tmplt.seq_index; in qla8044_process_reset_template() 952 for (; (!vha->reset_tmplt.seq_end) && (index < entries); index++) { in qla8044_process_reset_template() 987 "entry = %d\n", __func__, p_hdr->cmd, index); in qla8044_process_reset_template() 995 vha->reset_tmplt.seq_index = index; in qla8044_process_reset_template() 2207 uint32_t read_value, opcode, poll_time, addr, index; qla8044_minidump_process_control() local 2447 qla8044_mark_entry_skipped(struct scsi_qla_host *vha, struct qla8044_minidump_entry_hdr *entry_hdr, int index) qla8044_mark_entry_skipped() argument [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_io.c | 178 * the vertex index within the primitive. 217 * the primitive index. in get_number_of_slots() 242 * inputs), skip the outermost array index. Process the rest normally. in get_io_offset() 246 *array_index = nir_ssa_for_src(b, (*p)->arr.index, 1); in get_io_offset() 255 const unsigned index = nir_src_as_uint((*p)->arr.index); in get_io_offset() local 256 const unsigned total_offset = *component + index; in get_io_offset() 270 nir_amul_imm(b, nir_ssa_for_src(b, (*p)->arr.index, 1), size); in get_io_offset() 278 for (unsigned i = 0; i < (*p)->strct.index; i++) { in get_io_offset() 490 semantics.dual_source_blend_index = var->data.index; in emit_store() 1870 nir_ssa_def *index = nir_ssa_for_src(b, deref->arr.index, 1); nir_explicit_io_address_from_deref() local 2167 nir_ssa_def *index = addr_to_index(b, addr, addr_format); lower_explicit_io_array_length() local [all...] |
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64.cc | 877 // Post-index beyond unscaled addressing range. in LoadStoreMacro() 881 // Pre-index beyond unscaled addressing range. in LoadStoreMacro() 1403 // Adjust pointers for post-index ldp/stp with negative offset: in CopyDoubleWords() 1471 void TurboAssembler::LoadRoot(Register destination, RootIndex index) { in LoadRoot() argument 1476 MemOperand(kRootRegister, RootRegisterOffsetForRootIndex(index))); in LoadRoot() 1479 void TurboAssembler::PushRoot(RootIndex index) { in PushRoot() argument 1483 LoadRoot(tmp, index); in PushRoot() 1876 // The target of WebAssembly calls is still an index instead of an actual in CalculateTargetOffset() 1920 EmbeddedObjectIndex index = AddEmbeddedObject(code); in Jump() local 1921 DCHECK(is_int32(index)); in Jump() 1967 EmbeddedObjectIndex index = AddEmbeddedObject(code); Call() local 2891 CompareRoot(const Register& obj, RootIndex index) TruncateDoubleToI() argument 2900 JumpIfRoot(const Register& obj, RootIndex index, Label* if_equal) TruncateDoubleToI() argument 2906 JumpIfNotRoot(const Register& obj, RootIndex index, Label* if_not_equal) TruncateDoubleToI() argument 3012 AtomicDecompressTaggedSigned(const Register& destination, const Register& base, const Register& index, const Register& temp) TruncateDoubleToI() argument 3026 AtomicDecompressTaggedPointer(const Register& destination, const Register& base, const Register& index, const Register& temp) TruncateDoubleToI() argument 3036 AtomicDecompressAnyTagged(const Register& destination, const Register& base, const Register& index, const Register& temp) TruncateDoubleToI() argument 3410 LoadNativeContextSlot(Register dst, int index) TruncateDoubleToI() argument [all...] |
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | macro-assembler-x64.cc | 42 Operand StackArgumentsAccessor::GetArgumentOperand(int index) const { in GetArgumentOperand() 43 DCHECK_GE(index, 0); in GetArgumentOperand() 46 return Operand(rsp, kPCOnStackSize + index * kSystemPointerSize); in GetArgumentOperand() 159 Operand TurboAssembler::RootAsOperand(RootIndex index) { in RootAsOperand() argument 161 return Operand(kRootRegister, RootRegisterOffsetForRootIndex(index)); in RootAsOperand() 164 void TurboAssembler::LoadRoot(Register destination, RootIndex index) { in LoadRoot() argument 166 movq(destination, RootAsOperand(index)); in LoadRoot() 169 void MacroAssembler::PushRoot(RootIndex index) { in PushRoot() argument 171 Push(RootAsOperand(index)); in PushRoot() 174 void TurboAssembler::CompareRoot(Register with, RootIndex index) { in CompareRoot() argument 185 CompareRoot(Operand with, RootIndex index) CompareRoot() argument 1692 EmbeddedObjectIndex index = AddEmbeddedObject(object); CallRecordWriteStub() local 1742 SmiIndex index = SmiToIndex(count, count, kSystemPointerSizeLog2); CallRecordWriteStub() local 2964 LoadNativeContextSlot(Register dst, int index) CallRecordWriteStub() argument [all...] |
/third_party/libuv/test/ |
H A D | test-fs.c | 3409 size_t index; in fs_write_alotof_bufs() local 3433 for (index = 0; index < iovcount; ++index) in fs_write_alotof_bufs() 3434 iovs[index] = uv_buf_init(test_buf, sizeof(test_buf)); in fs_write_alotof_bufs() 3451 for (index = 0; index < iovcount; ++index) in fs_write_alotof_bufs() 3452 iovs[index] = uv_buf_init(buffer + index * sizeo in fs_write_alotof_bufs() 3517 size_t index; fs_write_alotof_bufs_with_offset() local 3760 size_t index; test_fs_partial() local [all...] |
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | instruction-selector-mips64.cc | 361 Node* index = node->InputAt(1); in EmitLoad() local 363 if (g.CanBeImmediate(index, opcode)) { in EmitLoad() 366 g.UseRegister(base), g.UseImmediate(index)); in EmitLoad() 370 addr_reg, g.UseRegister(base), g.UseRegister(index)); in EmitLoad() 384 Node* index = node->InputAt(1); in EmitAddBeforeS128LoadStore() local 387 addr_reg, g.UseRegister(base), g.UseRegister(index)); in EmitAddBeforeS128LoadStore() 524 Node* index = node->InputAt(1); in VisitStore() local 541 inputs[input_count++] = g.UseUniqueRegister(index); in VisitStore() 586 if (g.CanBeImmediate(index, opcode)) { in VisitStore() 588 g.UseRegister(base), g.UseImmediate(index), in VisitStore() 1833 Node* index = node->InputAt(1); VisitUnalignedLoad() local 1886 Node* index = node->InputAt(1); VisitUnalignedStore() local 2160 Node* index = node->InputAt(1); VisitWord32Compare() local 2211 Node* index = node->InputAt(1); VisitWord32Compare() local 2290 Node* index = node->InputAt(1); VisitWord32Compare() local 2314 Node* index = node->InputAt(1); VisitWord32Compare() local 2340 Node* index = node->InputAt(1); VisitWord32Compare() local [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |