Home
last modified time | relevance | path

Searched refs:ihead (Results 1 – 25 of 230) sorted by relevance

12345678910

/dports/devel/p5-Iterator-Util/Iterator-Util-0.02/t/
H A Dihead.t18 # ihead (3)
36 # ihead, zero (3)
54 # ihead, negative (3)
72 # ihead, parameter error (4)
75 $iter = ihead -77, 4;
86 # ihead (3)
90 @vals = ihead 5, $iter;
98 # ihead, zero (3)
110 # ihead, negative (3)
122 # ihead, undef (3)
[all …]
/dports/net-mgmt/flow-tools/flow-tools-2ca53f5/lib/
H A Dftio.c2413 ihead->enc_len = len_buf; in ftiheader_read()
2441 ihead->magic1 = h1->magic1; in ftiheader_read()
2442 ihead->magic2 = h1->magic2; in ftiheader_read()
2446 ihead->cap_start = h1->start; in ftiheader_read()
2447 ihead->cap_end = h1->end; in ftiheader_read()
2448 ihead->flags = h1->flags; in ftiheader_read()
2465 SWAPINT32(ihead->cap_end); in ftiheader_read()
2466 SWAPINT32(ihead->flags); in ftiheader_read()
2467 SWAPINT32(ihead->rotation); in ftiheader_read()
2651 if (!ihead->ftmap) { in ftiheader_read()
[all …]
/dports/graphics/libpano13/libpano13-2.9.20/
H A Dbmp.c51 win3xBitmapInfoHeader ihead; // Second part of bitmap header in writeBMP() local
71 ihead.HeaderSize=40; // Size of this header in writeBMP()
72 ihead.ImageWidth=im->width; // Image width in pixels in writeBMP()
73 ihead.ImageHeight=im->height; // Image height in pixels in writeBMP()
74 ihead.NumberOfImagePlanes=1; // Number of planes (Always 1) in writeBMP()
75 ihead.BitsPerPixel=24; // Bits per pixel (24 bit color) in writeBMP()
78 ihead.SizeOfBitmap = head.FileSize-54; // Size of bitmap in bytes in writeBMP()
81 ihead.NumColorsUsed =0; // Number of colors in image in writeBMP()
99 count = sizeof( ihead ); in writeBMP()
100 mywrite( output, count, &ihead ); in writeBMP()
[all …]
/dports/science/cdo/cdo-2.0.0/src/
H A DInput.cc52 int ihead[8]; in Input() local
122 date = ihead[0]; in Input()
123 code = ihead[1]; in Input()
124 level = ihead[2]; in Input()
125 gridsize = ihead[3]; in Input()
158 code = ihead[0]; in Input()
159 level = ihead[1]; in Input()
160 date = ihead[2]; in Input()
161 time = ihead[3]; in Input()
162 nlon = ihead[4]; in Input()
[all …]
/dports/www/ufdbguard/ufdbGuard-1.35.3/src/
H A DhttpsQueue.c37 static volatile int ihead = 0; /* array index for the head */ variable
69 for (i = ihead; i != itail; i = (i+1) % UFDB_HTTPS_QUEUE_SIZE) in ufdbHttpsQueueRequest()
181 ihead, _ufdb_httpsq_n_queued, q[ihead].hostname, q[ihead].portnumber ); in ufdbGetHttpsRequest()
183 *portnumber = q[ihead].portnumber; in ufdbGetHttpsRequest()
184 strcpy( hostname, q[ihead].hostname ); in ufdbGetHttpsRequest()
185 ihead = (ihead + 1) % UFDB_HTTPS_QUEUE_SIZE; in ufdbGetHttpsRequest()
/dports/science/frontistr/FrontISTR-c66bdc397de319ca59a0565b3f3b1a3b33f0c50c/fistr1/src/common/
H A Dfstr_get_prop.f9022 integer(kind=kint) :: n_item, n_subitem, ihead, isect, mid, mpos local
33 ihead = hecMESH%section%sect_R_index(isect-1)
36 thick = hecMESH%section%sect_R_item(ihead+1)
50 ihead=hecMESH%material%mat_ITEM_index(mid-1)
70 n_subitem = hecMESH%material%mat_subITEM_index(ihead+1) &
71 - hecMESH%material%mat_subITEM_index(ihead)
73 mpos=hecMESH%material%mat_subITEM_index(ihead)
107 -hecMESH%material%mat_subITEM_index(ihead+1)
109 mpos=hecMESH%material%mat_subITEM_index(ihead+1)
127 -hecMESH%material%mat_subITEM_index(ihead+2)
[all …]
/dports/sysutils/syslinux/syslinux-6.03/com32/lib/syslinux/
H A Dinitramfs.c49 int initramfs_add_data(struct initramfs *ihead, const void *data, in initramfs_add_data() argument
70 in->next = ihead; in initramfs_add_data()
71 in->prev = ihead->prev; in initramfs_add_data()
72 ihead->prev->next = in; in initramfs_add_data()
73 ihead->prev = in; in initramfs_add_data()
H A Dinitramfs_file.c105 int initramfs_mknod(struct initramfs *ihead, const char *filename, in initramfs_mknod() argument
137 if (initramfs_add_data(ihead, buffer, bytes, bytes, 4)) { in initramfs_mknod()
150 int initramfs_add_file(struct initramfs *ihead, const void *data, in initramfs_add_file() argument
154 if (initramfs_mknod(ihead, filename, do_mkdir, in initramfs_add_file()
158 return initramfs_add_data(ihead, data, data_len, len, 4); in initramfs_add_file()
161 int initramfs_add_trailer(struct initramfs *ihead) in initramfs_add_trailer() argument
163 return initramfs_mknod(ihead, "TRAILER!!!", 0, 0, 0, 0, 0); in initramfs_add_trailer()
/dports/math/suitesparse-graphblas/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-config/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-klu/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-amd/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-rbio/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-ldl/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/externals/fetk/punc/src/umfpack/
H A Dumf_mem_alloc_head_block.c41 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
48 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
49 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
52 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-mongoose/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-colamd/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-camd/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-cholmod/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-ccolamd/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/umfpack/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.cc40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-slip_lu/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-spqr/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/science/elmerfem/elmerfem-release-9.0/umfpack/src/umfpack/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()
/dports/math/suitesparse-btf/SuiteSparse-5.10.1/UMFPACK/Source/
H A Dumf_mem_alloc_head_block.c40 if (nunits > (Numeric->itail - Numeric->ihead)) in UMF_mem_alloc_head_block()
47 p = Numeric->ihead ; in UMF_mem_alloc_head_block()
48 Numeric->ihead += nunits ; in UMF_mem_alloc_head_block()
51 usage = Numeric->ihead + Numeric->tail_usage ; in UMF_mem_alloc_head_block()

12345678910