LAMMP 4.2.0
Lamina High-Precision Arithmetic Library
载入中...
搜索中...
未找到
fill.c 文件参考
+ fill.c 的引用(Include)关系图:

浏览源代码.

函数

void lmmp_fill (mp_ptr dst, mp_size_t begin, mp_size_t end, mp_limb_t val)
 Copyright (C) 2026 HJimmyK(Jericho Knox)
 

函数说明

◆ lmmp_fill()

void lmmp_fill ( mp_ptr  dst,
mp_size_t  begin,
mp_size_t  end,
mp_limb_t  val 
)

Copyright (C) 2026 HJimmyK(Jericho Knox)

This file is part of LAMMP.

LAMMP is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed WITHOUT ANY WARRANTY.

See https://www.gnu.org/licenses/.

在文件 fill.c19 行定义.

19 {
22 for (mp_size_t i = begin; i < end; i++) {
23 dst[i] = val;
24 }
25}
uint64_t mp_size_t
Definition lmmp.h:114
#define lmmp_param_assert(x)
Definition lmmp.h:496
#define n

引用了 lmmp_param_assert , 以及 n.