Home
last modified time | relevance | path

Searched refs:needed (Results 176 - 200 of 318) sorted by relevance

12345678910>>...13

/kernel/linux/linux-5.10/fs/f2fs/
H A Dsegment.h628 int freed, int needed) in has_not_enough_free_secs()
644 need_lower = node_secs + dent_secs + reserved_sections(sbi) + needed; in has_not_enough_free_secs()
627 has_not_enough_free_secs(struct f2fs_sb_info *sbi, int freed, int needed) has_not_enough_free_secs() argument
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_chromamc.asm113 ; mx == 0 AND my == 0 - no filter needed
454 ; mx == 0 AND my == 0 - no filter needed
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderFConvertTests.cpp193 const size_t needed = ((extraValues == 0) ? 0 : (kGCFNumFloats - extraValues)); in getInputValues() local
195 auto extra = getRandomInteresting<T> (rnd, needed); in getInputValues()
502 "#extension GL_EXT_shader_16bit_storage: require\n" // This is needed to use 16-bit float types in buffers. in initPrograms()
503 "#extension GL_EXT_shader_explicit_arithmetic_types: require\n" // This is needed for some conversions. in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderFConvertTests.cpp193 const size_t needed = ((extraValues == 0) ? 0 : (kGCFNumFloats - extraValues)); in getInputValues() local
195 auto extra = getRandomInteresting<T> (rnd, needed); in getInputValues()
502 "#extension GL_EXT_shader_16bit_storage: require\n" // This is needed to use 16-bit float types in buffers. in initPrograms()
503 "#extension GL_EXT_shader_explicit_arithmetic_types: require\n" // This is needed for some conversions. in initPrograms()
/kernel/linux/linux-6.6/fs/ext4/
H A Dmballoc.c117 * blocks. This ensure we ask for more blocks that we needed. The extra
1981 int needed, struct ext4_free_extent *ex) in mb_find_extent()
2013 while (needed > ex->fe_len && in mb_find_extent()
2034 "block=%d, order=%d needed=%d ex=%u/%d/%d@%u", in mb_find_extent()
2035 block, order, needed, ex->fe_group, ex->fe_start, in mb_find_extent()
5525 void ext4_discard_preallocations(struct inode *inode, unsigned int needed) in ext4_discard_preallocations() argument
5547 atomic_read(&ei->i_prealloc_active), needed); in ext4_discard_preallocations()
5549 if (needed == 0) in ext4_discard_preallocations()
5550 needed = UINT_MAX; in ext4_discard_preallocations()
5555 for (iter = rb_first(&ei->i_prealloc_node); iter && needed; in ext4_discard_preallocations()
1980 mb_find_extent(struct ext4_buddy *e4b, int block, int needed, struct ext4_free_extent *ex) mb_find_extent() argument
6029 ext4_mb_discard_preallocations(struct super_block *sb, int needed) ext4_mb_discard_preallocations() argument
[all...]
/kernel/linux/linux-6.6/fs/smb/server/
H A Dtransport_rdma.c971 int needed) in wait_for_credits()
976 if (atomic_sub_return(needed, total_credits) >= 0) in wait_for_credits()
979 atomic_add(needed, total_credits); in wait_for_credits()
981 atomic_read(total_credits) >= needed || in wait_for_credits()
1375 /* calculate needed credits */ in smb_direct_rdma_xmit()
1398 ksmbd_debug(RDMA, "RDMA %s, len %#x, needed credits %#x\n", in smb_direct_rdma_xmit()
1729 * are needed for MR registration, RDMA R/W, local & remote in smb_direct_init_params()
969 wait_for_credits(struct smb_direct_transport *t, wait_queue_head_t *waitq, atomic_t *total_credits, int needed) wait_for_credits() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingBarrierTests.cpp318 bool needed; in needsAccelerationStructure() local
327 needed = true; in needsAccelerationStructure()
330 needed = false; in needsAccelerationStructure()
334 return needed; in needsAccelerationStructure()
972 // Create top and bottom level acceleration structures if needed. in updateDescriptorSet()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingBarrierTests.cpp318 bool needed; in needsAccelerationStructure() local
327 needed = true; in needsAccelerationStructure()
330 needed = false; in needsAccelerationStructure()
334 return needed; in needsAccelerationStructure()
972 // Create top and bottom level acceleration structures if needed. in updateDescriptorSet()
/third_party/libabigail/src/
H A Dabg-reader.cc91 read_elf_needed_from_input(reader& rdr, vector<string>& needed);
105 /// information needed during the de-serialization, but that does not
1204 // Read the needed element in read_corpus()
1205 vector<string> needed; in read_corpus() local
1206 read_elf_needed_from_input(*this, needed); in read_corpus()
1207 if (!needed.empty()) in read_corpus()
1208 corp.set_needed(needed); in read_corpus()
1851 /// From an "elf-needed" XML_ELEMENT node, build a vector of strings
1852 /// representing the vector of the dependencies needed by a given
1855 /// @param node the XML_ELEMENT node of name "elf-needed"
1862 build_needed(xmlNode* node, vector<string>& needed) build_needed() argument
1895 read_elf_needed_from_input(reader& rdr, vector<string>& needed) read_elf_needed_from_input() argument
[all...]
/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_output.c2007 u32 partial, needed, window, max_len; in tcp_mss_split_point() local
2015 needed = min(skb->len, window); in tcp_mss_split_point()
2017 if (max_len <= needed) in tcp_mss_split_point()
2020 partial = needed % mss_now; in tcp_mss_split_point()
2026 return needed - partial; in tcp_mss_split_point()
2028 return needed; in tcp_mss_split_point()
3637 /* Okay, we have all we need - do the md5 hash if needed */ in tcp_make_synack()
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_output.c2017 u32 partial, needed, window, max_len; in tcp_mss_split_point() local
2025 needed = min(skb->len, window); in tcp_mss_split_point()
2027 if (max_len <= needed) in tcp_mss_split_point()
2030 partial = needed % mss_now; in tcp_mss_split_point()
2036 return needed - partial; in tcp_mss_split_point()
2038 return needed; in tcp_mss_split_point()
3727 /* Okay, we have all we need - do the md5 hash if needed */ in tcp_make_synack()
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dphys2virt.S92 @ needed. The encoding of the immediate is rather complex for values
/kernel/linux/linux-5.10/arch/m68k/kernel/
H A Dentry.S164 movel #-ENOSYS,%sp@(PT_OFF_D0)| needed for strace
336 * registers until their contents are no longer needed.
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dstxncpy.S138 beq t0, stxncpy_aligned # avoid loading dest word if not needed
/kernel/linux/linux-5.10/arch/sh/lib/
H A Dcopy_page.S92 ! Calculate bytes needed to align to src
/kernel/linux/linux-5.10/arch/sh/kernel/cpu/sh3/
H A Dentry.S327 ! Switch to kernel stack if needed
/kernel/linux/linux-5.10/arch/arc/kernel/
H A Dentry-compact.S23 * vineetg: Nov 2009 (Everything needed for TIF_RESTORE_SIGMASK)
25 * -Wrappers for sys_{,rt_}sigsuspend() no longer needed as they don't
32 * exception. Thus FAKE RTIE needed in low level Priv-Violation handler.
352 ; Special considerations needed for the context which took L2 intr
/kernel/linux/linux-5.10/arch/arm/include/asm/
H A Dassembler.h394 @ explicit IT instruction needed because of the label
/kernel/linux/linux-5.10/arch/arm/lib/
H A Dlib1funcs.S170 @ Perform all needed subtractions to keep only the reminder.
/kernel/linux/linux-6.6/arch/alpha/lib/
H A Dstxncpy.S138 beq t0, stxncpy_aligned # avoid loading dest word if not needed
/kernel/linux/linux-6.6/arch/m68k/kernel/
H A Dentry.S181 movel #-ENOSYS,%sp@(PT_OFF_D0)| needed for strace
337 * registers until their contents are no longer needed.
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dphys2virt.S92 @ needed. The encoding of the immediate is rather complex for values
/kernel/linux/linux-6.6/arch/arc/kernel/
H A Dentry-compact.S23 * vineetg: Nov 2009 (Everything needed for TIF_RESTORE_SIGMASK)
25 * -Wrappers for sys_{,rt_}sigsuspend() no longer needed as they don't
32 * exception. Thus FAKE RTIE needed in low level Priv-Violation handler.
337 ; Special considerations needed for the context which took L2 intr
/kernel/linux/linux-6.6/arch/arm/lib/
H A Dlib1funcs.S170 @ Perform all needed subtractions to keep only the reminder.
/kernel/linux/linux-6.6/arch/sh/kernel/cpu/sh3/
H A Dentry.S326 ! Switch to kernel stack if needed

Completed in 42 milliseconds

12345678910>>...13