summaryrefslogtreecommitdiffstats
path: root/Python
ModeNameSize
-rw-r--r--Python-ast.c243160logstatsplain
-rw-r--r--_warnings.c26493logstatsplain
-rw-r--r--asdl.c661logstatsplain
-rw-r--r--ast.c103274logstatsplain
-rw-r--r--atof.c815logstatsplain
-rw-r--r--bltinmodule.c70836logstatsplain
-rw-r--r--ceval.c110232logstatsplain
-rw-r--r--codecs.c20624logstatsplain
-rw-r--r--compile.c95842logstatsplain
-rw-r--r--dup2.c685logstatsplain
-rw-r--r--dynload_aix.c5000logstatsplain
-rw-r--r--dynload_atheos.c1054logstatsplain
-rw-r--r--dynload_beos.c6411logstatsplain
-rw-r--r--dynload_dl.c561logstatsplain
-rw-r--r--dynload_hpux.c1376logstatsplain
-rw-r--r--dynload_next.c3498logstatsplain
-rw-r--r--dynload_os2.c1020logstatsplain
-rw-r--r--dynload_shlib.c3285logstatsplain
-rw-r--r--dynload_stub.c202logstatsplain
-rw-r--r--dynload_win.c7668logstatsplain
-rw-r--r--errors.c17855logstatsplain
-rw-r--r--formatter_string.c587logstatsplain
-rw-r--r--formatter_unicode.c483logstatsplain
-rw-r--r--frozen.c1238logstatsplain
-rw-r--r--frozenmain.c1297logstatsplain
-rw-r--r--future.c3682logstatsplain
-rw-r--r--getargs.c41723logstatsplain
-rw-r--r--getcompiler.c366logstatsplain
-rw-r--r--getcopyright.c503logstatsplain
-rw-r--r--getcwd.c1401logstatsplain
-rw-r--r--getmtime.c388logstatsplain
-rw-r--r--getopt.c3041logstatsplain
-rw-r--r--getplatform.c130logstatsplain
-rw-r--r--getversion.c290logstatsplain
-rw-r--r--graminit.c38590logstatsplain
-rw-r--r--import.c83434logstatsplain
-rw-r--r--importdl.c2000logstatsplain
-rw-r--r--importdl.h990logstatsplain
-rw-r--r--mactoolboxglue.c13351logstatsplain
-rw-r--r--marshal.c26445logstatsplain
-rw-r--r--modsupport.c13559logstatsplain
-rw-r--r--mysnprintf.c2702logstatsplain
-rw-r--r--mystrtoul.c6519logstatsplain
-rw-r--r--peephole.c17489logstatsplain
-rw-r--r--pyarena.c5940logstatsplain
-rw-r--r--pyfpe.c623logstatsplain
-rw-r--r--pymath.c5400logstatsplain
-rw-r--r--pystate.c17430logstatsplain
-rw-r--r--pystrcmp.c562logstatsplain
-rw-r--r--pystrtod.c15124logstatsplain
-rw-r--r--pythonrun.c46087logstatsplain
-rw-r--r--sigcheck.c529logstatsplain
-rw-r--r--strdup.c256logstatsplain
-rw-r--r--strtod.c5205logstatsplain
-rw-r--r--structmember.c8320logstatsplain
-rw-r--r--symtable.c37981logstatsplain
-rw-r--r--sysmodule.c43432logstatsplain
-rw-r--r--thread.c9742logstatsplain
-rw-r--r--thread_atheos.h6094logstatsplain
-rw-r--r--thread_beos.h6167logstatsplain
-rw-r--r--thread_cthread.h2787logstatsplain
-rw-r--r--thread_foobar.h1920logstatsplain
-rw-r--r--thread_lwp.h3222logstatsplain
-rw-r--r--thread_nt.h6793logstatsplain
-rw-r--r--thread_os2.h5703logstatsplain
-rw-r--r--thread_pth.h5276logstatsplain
-rw-r--r--thread_pthread.h12382logstatsplain
-rw-r--r--thread_sgi.h9613logstatsplain
-rw-r--r--thread_solaris.h3115logstatsplain
-rw-r--r--thread_wince.h4066logstatsplain
-rw-r--r--traceback.c6683logstatsplain
---------------------------------- */ herr_t H5Pset_local_heap_size_hint(hid_t plist_id, size_t size_hint) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE2("e", "iz", plist_id, size_hint); /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get value */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") /* Update field */ H5_CHECKED_ASSIGN(ginfo.lheap_size_hint, uint32_t, size_hint, size_t); /* Set value */ if(H5P_set(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set group info") done: FUNC_LEAVE_API(ret_value) } /* end H5Pset_local_heap_size_hint() */ /*------------------------------------------------------------------------- * Function: H5Pget_local_heap_size_hint * * Purpose: Returns the local heap size hint, which is used for creating * groups * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * August 29, 2005 *------------------------------------------------------------------------- */ herr_t H5Pget_local_heap_size_hint(hid_t plist_id, size_t *size_hint /*out*/) { herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(FAIL) H5TRACE2("e", "ix", plist_id, size_hint); if(size_hint) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get value */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") /* Update field */ *size_hint = ginfo.lheap_size_hint; } /* end if */ done: FUNC_LEAVE_API(ret_value) } /* end H5Pget_local_heap_size_hint() */ /*------------------------------------------------------------------------- * Function: H5Pset_link_phase_change * * Purpose: Set the maximum # of links to store "compactly" and the * minimum # of links to store "densely". (These should * overlap). * * Note: Currently both of these must be updated at the same time. * * Note: Come up with better name & description! -QAK * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * August 29, 2005 *------------------------------------------------------------------------- */ herr_t H5Pset_link_phase_change(hid_t plist_id, unsigned max_compact, unsigned min_dense) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE3("e", "iIuIu", plist_id, max_compact, min_dense); /* Range check values */ if(max_compact < min_dense) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "max compact value must be >= min dense value") if(max_compact > 65535) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "max compact value must be < 65536") if(min_dense > 65535) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "min dense value must be < 65536") /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get group info */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") /* Update fields */ if(max_compact != H5G_CRT_GINFO_MAX_COMPACT || min_dense != H5G_CRT_GINFO_MIN_DENSE) ginfo.store_link_phase_change = TRUE; else ginfo.store_link_phase_change = FALSE; ginfo.max_compact = (uint16_t)max_compact; ginfo.min_dense = (uint16_t)min_dense; /* Set group info */ if(H5P_set(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set group info") done: FUNC_LEAVE_API(ret_value) } /* end H5Pset_link_phase_change() */ /*------------------------------------------------------------------------- * Function: H5Pget_link_phase_change * * Purpose: Returns the max. # of compact links & the min. # of dense * links, which are used for storing groups * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * August 29, 2005 *------------------------------------------------------------------------- */ herr_t H5Pget_link_phase_change(hid_t plist_id, unsigned *max_compact /*out*/, unsigned *min_dense /*out*/) { herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(FAIL) H5TRACE3("e", "ixx", plist_id, max_compact, min_dense); /* Get values */ if(max_compact || min_dense) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get group info */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") if(max_compact) *max_compact = ginfo.max_compact; if(min_dense) *min_dense = ginfo.min_dense; } /* end if */ done: FUNC_LEAVE_API(ret_value) } /* end H5Pget_link_phase_change() */ /*------------------------------------------------------------------------- * Function: H5Pset_est_link_info * * Purpose: Set the estimates for the number of entries and length of each * entry name in a group. * * Note: Currently both of these must be updated at the same time. * * Note: EST_NUM_ENTRIES applies only when the number of entries is less * than the MAX_COMPACT # of entries (from H5Pset_link_phase_change). * * Note: Come up with better name & description? -QAK * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * September 6, 2005 *------------------------------------------------------------------------- */ herr_t H5Pset_est_link_info(hid_t plist_id, unsigned est_num_entries, unsigned est_name_len) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE3("e", "iIuIu", plist_id, est_num_entries, est_name_len); /* Range check values */ if(est_num_entries > 65535) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "est. number of entries must be < 65536") if(est_name_len > 65535) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "est. name length must be < 65536") /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get group info */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") /* Update fields */ if(est_num_entries != H5G_CRT_GINFO_EST_NUM_ENTRIES || est_name_len != H5G_CRT_GINFO_EST_NAME_LEN) ginfo.store_est_entry_info = TRUE; else ginfo.store_est_entry_info = FALSE; ginfo.est_num_entries = (uint16_t)est_num_entries; ginfo.est_name_len = (uint16_t)est_name_len; /* Set group info */ if(H5P_set(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set group info") done: FUNC_LEAVE_API(ret_value) } /* end H5Pset_est_link_info() */ /*------------------------------------------------------------------------- * Function: H5Pget_est_link_info * * Purpose: Returns the est. # of links in a group & the est. length of * the name of each link. * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * September 6, 2005 *------------------------------------------------------------------------- */ herr_t H5Pget_est_link_info(hid_t plist_id, unsigned *est_num_entries /*out*/, unsigned *est_name_len /*out*/) { herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(FAIL) H5TRACE3("e", "ixx", plist_id, est_num_entries, est_name_len); /* Get values */ if(est_num_entries || est_name_len) { H5P_genplist_t *plist; /* Property list pointer */ H5O_ginfo_t ginfo; /* Group information structure */ /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get group info */ if(H5P_get(plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info") if(est_num_entries) *est_num_entries = ginfo.est_num_entries; if(est_name_len) *est_name_len = ginfo.est_name_len; } /* end if */ done: FUNC_LEAVE_API(ret_value) } /* end H5Pget_est_link_info() */ /*------------------------------------------------------------------------- * Function: H5Pset_link_creation_order * * Purpose: Set the flags for creation order of links in a group * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * September 12, 2006 *------------------------------------------------------------------------- */ herr_t H5Pset_link_creation_order(hid_t plist_id, unsigned crt_order_flags) { H5P_genplist_t *plist; /* Property list pointer */ H5O_linfo_t linfo; /* Link information structure */ herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) H5TRACE2("e", "iIu", plist_id, crt_order_flags); /* Check for bad combination of flags */ if(!(crt_order_flags & H5P_CRT_ORDER_TRACKED) && (crt_order_flags & H5P_CRT_ORDER_INDEXED)) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "tracking creation order is required for index") /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get link info */ if(H5P_get(plist, H5G_CRT_LINK_INFO_NAME, &linfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get link info") /* Update fields */ linfo.track_corder = (hbool_t)((crt_order_flags & H5P_CRT_ORDER_TRACKED) ? TRUE : FALSE); linfo.index_corder = (hbool_t)((crt_order_flags & H5P_CRT_ORDER_INDEXED) ? TRUE : FALSE); /* Set link info */ if(H5P_set(plist, H5G_CRT_LINK_INFO_NAME, &linfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set link info") done: FUNC_LEAVE_API(ret_value) } /* end H5Pset_link_creation_order() */ /*------------------------------------------------------------------------- * Function: H5Pget_link_creation_order * * Purpose: Returns the flag indicating that creation order is tracked * for links in a group. * * Return: Non-negative on success/Negative on failure * * Programmer: Quincey Koziol * September 12, 2006 *------------------------------------------------------------------------- */ herr_t H5Pget_link_creation_order(hid_t plist_id, unsigned *crt_order_flags /*out*/) { herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(FAIL) H5TRACE2("e", "ix", plist_id, crt_order_flags); /* Get values */ if(crt_order_flags) { H5P_genplist_t *plist; /* Property list pointer */ H5O_linfo_t linfo; /* Link information structure */ /* Reset the value to return */ *crt_order_flags = 0; /* Get the plist structure */ if(NULL == (plist = H5P_object_verify(plist_id, H5P_GROUP_CREATE))) HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID") /* Get link info */ if(H5P_get(plist, H5G_CRT_LINK_INFO_NAME, &linfo) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get link info") *crt_order_flags |= linfo.track_corder ? H5P_CRT_ORDER_TRACKED : 0; *crt_order_flags |= linfo.index_corder ? H5P_CRT_ORDER_INDEXED : 0; } /* end if */ done: FUNC_LEAVE_API(ret_value) } /* end H5Pget_link_creation_order() */ /*------------------------------------------------------------------------- * Function: H5P__gcrt_group_info_enc * * Purpose: Callback routine which is called whenever the group * property in the dataset access property list is * encoded. * * Return: Success: Non-negative * Failure: Negative * * Programmer: Mohamad Chaarawi * Monday, October 10, 2011 * *------------------------------------------------------------------------- */ static herr_t H5P__gcrt_group_info_enc(const void *value, void **_pp, size_t *size) { const H5O_ginfo_t *ginfo = (const H5O_ginfo_t *)value; /* Create local aliases for values */ uint8_t **pp = (uint8_t **)_pp; FUNC_ENTER_STATIC_NOERR if(NULL != *pp) { UINT32ENCODE(*pp, ginfo->lheap_size_hint) UINT16ENCODE(*pp, ginfo->max_compact) UINT16ENCODE(*pp, ginfo->min_dense) UINT16ENCODE(*pp, ginfo->est_num_entries) UINT16ENCODE(*pp, ginfo->est_name_len) } /* end if */ *size += sizeof(uint16_t) * 4 + sizeof(uint32_t); FUNC_LEAVE_NOAPI(SUCCEED) } /* end H5P__gcrt_group_info_enc() */ /*------------------------------------------------------------------------- * Function: H5P__gcrt_group_info_dec * * Purpose: Callback routine which is called whenever the group info * property in the dataset access property list is * decoded. * * Return: Success: Non-negative * Failure: Negative * * Programmer: Mohamad Chaarawi * Monday, October 10, 2011 * *------------------------------------------------------------------------- */ static herr_t H5P__gcrt_group_info_dec(const void **_pp, void *_value) { H5O_ginfo_t *ginfo = (H5O_ginfo_t *)_value; /* Group info settings */ const uint8_t **pp = (const uint8_t **)_pp; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_STATIC_NOERR /* Set property to default value */ HDmemset(ginfo, 0, sizeof(H5O_ginfo_t)); *ginfo = H5G_def_ginfo_g; UINT32DECODE(*pp, ginfo->lheap_size_hint) UINT16DECODE(*pp, ginfo->max_compact) UINT16DECODE(*pp, ginfo->min_dense) UINT16DECODE(*pp, ginfo->est_num_entries) UINT16DECODE(*pp, ginfo->est_name_len) /* Update fields */ if(ginfo->max_compact != H5G_CRT_GINFO_MAX_COMPACT || ginfo->min_dense != H5G_CRT_GINFO_MIN_DENSE) ginfo->store_link_phase_change = TRUE; else ginfo->store_link_phase_change = FALSE; if(ginfo->est_num_entries != H5G_CRT_GINFO_EST_NUM_ENTRIES || ginfo->est_name_len != H5G_CRT_GINFO_EST_NAME_LEN) ginfo->store_est_entry_info = TRUE; else ginfo->store_est_entry_info = FALSE; FUNC_LEAVE_NOAPI(ret_value) } /* end H5P__gcrt_group_info_dec() */ /*------------------------------------------------------------------------- * Function: H5P__gcrt_link_info_enc * * Purpose: Callback routine which is called whenever the link * property in the dataset access property list is * encoded. * * Return: Success: Non-negative * Failure: Negative * * Programmer: Mohamad Chaarawi * Monday, October 10, 2011 * *------------------------------------------------------------------------- */ static herr_t H5P__gcrt_link_info_enc(const void *value, void **_pp, size_t *size) { const H5O_linfo_t *linfo = (const H5O_linfo_t *)value; /* Create local aliases for values */ uint8_t **pp = (uint8_t **)_pp; FUNC_ENTER_STATIC_NOERR if(NULL != *pp) { unsigned crt_order_flags = 0; crt_order_flags |= linfo->track_corder ? H5P_CRT_ORDER_TRACKED : 0; crt_order_flags |= linfo->index_corder ? H5P_CRT_ORDER_INDEXED : 0; /* Encode the size of unsigned*/ *(*pp)++ = (uint8_t)sizeof(unsigned); /* Encode the value */ H5_ENCODE_UNSIGNED(*pp, crt_order_flags) } /* end if */ *size += (1 + sizeof(unsigned)); FUNC_LEAVE_NOAPI(SUCCEED) } /* end H5P__gcrt_link_info_enc() */ /*------------------------------------------------------------------------- * Function: H5P__gcrt_link_info_dec * * Purpose: Callback routine which is called whenever the link info * property in the dataset access property list is * decoded. * * Return: Success: Non-negative * Failure: Negative * * Programmer: Mohamad Chaarawi * Monday, October 10, 2011 * *------------------------------------------------------------------------- */ static herr_t H5P__gcrt_link_info_dec(const void **_pp, void *_value) { H5O_linfo_t *linfo = (H5O_linfo_t *)_value; /* Link info settings */ const uint8_t **pp = (const uint8_t **)_pp; unsigned crt_order_flags; unsigned enc_size; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_STATIC enc_size = *(*pp)++; if(enc_size != sizeof(unsigned)) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "unsigned value can't be decoded") /* Set property to default value */ HDmemset(linfo, 0, sizeof(H5O_linfo_t)); *linfo = H5G_def_linfo_g; H5_DECODE_UNSIGNED(*pp, crt_order_flags) /* Update fields */ linfo->track_corder = (hbool_t)((crt_order_flags & H5P_CRT_ORDER_TRACKED) ? TRUE : FALSE); linfo->index_corder = (hbool_t)((crt_order_flags & H5P_CRT_ORDER_INDEXED) ? TRUE : FALSE); done: FUNC_LEAVE_NOAPI(ret_value) } /* end H5P__gcrt_link_info_dec() */