⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 putget.c

📁 一个用来实现偏微分方程中网格的计算库
💻 C
📖 第 1 页 / 共 5 页
字号:
		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_short_int(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_short_long(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const long *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_short_long(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_short_float(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const float *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_short_float(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_short_double(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const double *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_short_double(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_schar(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const schar *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_schar(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_uchar(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const uchar *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_uchar(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_short(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const short *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_short(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_int(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const int *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_int(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_long(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const long *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_long(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_float(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const float *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_float(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_int_double(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const double *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_int_double(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_float_schar(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const schar *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_float_schar(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_float_uchar(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const uchar *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_float_uchar(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_float_short(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const short *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)		return NC_NOERR;	assert(value != NULL);	for(;;)	{		size_t extent = MIN(remaining, ncp->chunk);		size_t nput = ncx_howmany(varp->type, extent);		int lstatus = ncp->nciop->get(ncp->nciop, offset, extent,				 RGN_WRITE, &xp);			if(lstatus != NC_NOERR)			return lstatus;				lstatus = ncx_putn_float_short(&xp, nput, value);		if(lstatus != NC_NOERR && status == NC_NOERR)		{			/* not fatal to the loop */			status = lstatus;		}		(void) ncp->nciop->rel(ncp->nciop, offset,				 RGN_MODIFIED);			remaining -= extent;		if(remaining == 0)			break; /* normal loop exit */		offset += extent;		value += nput;	}	return status;}static intputNCvx_float_int(NC *ncp, const NC_var *varp,		 const size_t *start, size_t nelems, const int *value){	off_t offset = NC_varoffset(ncp, varp, start);	size_t remaining = varp->xsz * nelems;	int status = NC_NOERR;	void *xp;	if(nelems == 0)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -