mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 15:10:29 +02:00
* srfi-4.h, srfi-4.c (scm_uniform_vector_p, scm_uniform_vector_ref, scm_uniform_vector_set_x, scm_uniform_vector_to_list, scm_is_uniform_vector, scm_c_uniform_vector_lengths, scm_c_uniform_vector_size, scm_uniform_vector_elements, scm_uniform_vector_element_size, scm_uniform_vector_release): New. (scm_i_uniform_vector_prototype, scm_i_uniform_vector_tag): New. (scm_uniform_element_size, scm_uniform_vector_length): Moved here from unif.h, unif.c and extended to handle both the old and new uniform vectors. * unif.h, unif.c (scm_uniform_vector_ref, scm_array_ref): Renamed the former to the latter. (scm_uniform_vector_length, scm_uniform_element_size): Moved to srfi-4.h, srfi-4.c. (scm_make_uve): Call scm_make_s8vector for #\nul prototype. (scm_array_p, scm_array_rank, scm_array_dimensions, scm_transpose_array, scm_enclose_array, scm_array_ref, scm_cvref, scm_array_set_x, scm_array_contents, scm_uniform_array_read_x, scm_array_to_list, scm_array_prototype): Handle srfi-4 uniform vectors. Removed code for scm_tc7_byvect. (scm_dimensions_to_uniform_array): Fill array with 0 when prototype is #\nul. (scm_i_print_array_dimension, scm_i_legacy_tag, scm_i_print_array): New. (scm_raprin1): Call scm_i_print_array for arrays. Removed code for scm_tc7_byvect.
153 lines
6 KiB
C
153 lines
6 KiB
C
#ifndef SCM_SRFI_4_H
|
||
#define SCM_SRFI_4_H
|
||
/* srfi-4.c --- Homogeneous numeric vector datatypes.
|
||
*
|
||
* Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
||
*
|
||
* This library is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU Lesser General Public
|
||
* License as published by the Free Software Foundation; either
|
||
* version 2.1 of the License, or (at your option) any later version.
|
||
*
|
||
* This library is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
* Lesser General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Lesser General Public
|
||
* License along with this library; if not, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
*/
|
||
|
||
|
||
#include "libguile/__scm.h"
|
||
|
||
/* Generic procedures.
|
||
*/
|
||
|
||
SCM_API SCM scm_uniform_vector_p (SCM v);
|
||
SCM_API SCM scm_uniform_vector_length (SCM v);
|
||
SCM_API SCM scm_uniform_vector_ref (SCM v, SCM idx);
|
||
SCM_API SCM scm_uniform_vector_set_x (SCM v, SCM idx, SCM val);
|
||
SCM_API SCM scm_uniform_vector_to_list (SCM v);
|
||
|
||
SCM_API int scm_is_uniform_vector (SCM obj);
|
||
SCM_API size_t scm_c_uniform_vector_length (SCM v);
|
||
SCM_API size_t scm_c_uniform_vector_size (SCM v);
|
||
|
||
SCM_API void *scm_uniform_vector_elements (SCM uvec);
|
||
SCM_API size_t scm_uniform_vector_element_size (SCM uvec);
|
||
SCM_API void scm_uniform_vector_release (SCM uvec);
|
||
|
||
/* Specific procedures.
|
||
*/
|
||
|
||
SCM_API SCM scm_u8vector_p (SCM obj);
|
||
SCM_API SCM scm_make_u8vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_u8vector (SCM l);
|
||
SCM_API SCM scm_u8vector_length (SCM uvec);
|
||
SCM_API SCM scm_u8vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_u8vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_u8vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_u8vector (SCM l);
|
||
SCM_API scm_t_uint8 *scm_u8vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_s8vector_p (SCM obj);
|
||
SCM_API SCM scm_make_s8vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_s8vector (SCM l);
|
||
SCM_API SCM scm_s8vector_length (SCM uvec);
|
||
SCM_API SCM scm_s8vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_s8vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_s8vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_s8vector (SCM l);
|
||
SCM_API scm_t_int8 *scm_s8vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_u16vector_p (SCM obj);
|
||
SCM_API SCM scm_make_u16vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_u16vector (SCM l);
|
||
SCM_API SCM scm_u16vector_length (SCM uvec);
|
||
SCM_API SCM scm_u16vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_u16vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_u16vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_u16vector (SCM l);
|
||
SCM_API scm_t_uint16 *scm_u16vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_s16vector_p (SCM obj);
|
||
SCM_API SCM scm_make_s16vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_s16vector (SCM l);
|
||
SCM_API SCM scm_s16vector_length (SCM uvec);
|
||
SCM_API SCM scm_s16vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_s16vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_s16vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_s16vector (SCM l);
|
||
SCM_API scm_t_int16 *scm_s16vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_u32vector_p (SCM obj);
|
||
SCM_API SCM scm_make_u32vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_u32vector (SCM l);
|
||
SCM_API SCM scm_u32vector_length (SCM uvec);
|
||
SCM_API SCM scm_u32vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_u32vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_u32vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_u32vector (SCM l);
|
||
SCM_API scm_t_uint32 *scm_u32vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_s32vector_p (SCM obj);
|
||
SCM_API SCM scm_make_s32vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_s32vector (SCM l);
|
||
SCM_API SCM scm_s32vector_length (SCM uvec);
|
||
SCM_API SCM scm_s32vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_s32vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_s32vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_s32vector (SCM l);
|
||
SCM_API scm_t_int32 *scm_s32vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_u64vector_p (SCM obj);
|
||
SCM_API SCM scm_make_u64vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_u64vector (SCM l);
|
||
SCM_API SCM scm_u64vector_length (SCM uvec);
|
||
SCM_API SCM scm_u64vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_u64vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_u64vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_u64vector (SCM l);
|
||
SCM_API scm_t_uint64 *scm_u64vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_s64vector_p (SCM obj);
|
||
SCM_API SCM scm_make_s64vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_s64vector (SCM l);
|
||
SCM_API SCM scm_s64vector_length (SCM uvec);
|
||
SCM_API SCM scm_s64vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_s64vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_s64vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_s64vector (SCM l);
|
||
SCM_API scm_t_int64 *scm_s64vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_f32vector_p (SCM obj);
|
||
SCM_API SCM scm_make_f32vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_f32vector (SCM l);
|
||
SCM_API SCM scm_f32vector_length (SCM uvec);
|
||
SCM_API SCM scm_f32vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_f32vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_f32vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_f32vector (SCM l);
|
||
SCM_API float *scm_f32vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_f64vector_p (SCM obj);
|
||
SCM_API SCM scm_make_f64vector (SCM n, SCM fill);
|
||
SCM_API SCM scm_f64vector (SCM l);
|
||
SCM_API SCM scm_f64vector_length (SCM uvec);
|
||
SCM_API SCM scm_f64vector_ref (SCM uvec, SCM index);
|
||
SCM_API SCM scm_f64vector_set_x (SCM uvec, SCM index, SCM value);
|
||
SCM_API SCM scm_f64vector_to_list (SCM uvec);
|
||
SCM_API SCM scm_list_to_f64vector (SCM l);
|
||
SCM_API double *scm_f64vector_elements (SCM uvec);
|
||
|
||
SCM_API SCM scm_i_read_homogenous_vector (SCM port, char pfx);
|
||
SCM_API SCM scm_i_uniform_vector_prototype (SCM uvec);
|
||
SCM_API const char *scm_i_uniform_vector_tag (SCM uvec);
|
||
|
||
SCM_API size_t scm_uniform_element_size (SCM obj);
|
||
|
||
SCM_API void scm_init_srfi_4 (void);
|
||
|
||
#endif /* SCM_SRFI_4_H */
|