代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/104361/15697173
tig test6.tig
/* define valid mutually recursive procedures */
let
function do_nothing1(a: int, b: string)=
do_nothing2(a+1)
function do_nothing2(d: int) =
do_nothing1(d, "str")
in
do_nothing1(0,
www.eeworm.com/read/104361/15697192
tig test18.tig
/* error : definition of recursive functions is interrupted */
let
function do_nothing1(a: int, b: string):int=
(do_nothing2(a+1);0)
var d:=0
function do_nothing2(d: int):string =
(do_
www.eeworm.com/read/101204/15841782
m iforgot.m
function iforgot(n)
%IFORGOT Recursive Function Call Example.
%
% D.C. Hanselman, University of Maine, Orono, ME, 04469
% 1/25/95
% Copyright (c) 1996 by Prentice-Hall, Inc.
if nargin==0,n=20;end
if
www.eeworm.com/read/386582/8737016
h dir_hash.h
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo
www.eeworm.com/read/382751/9003136
c mutex_noop.c
/*
** 2008 October 07
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgivenes
www.eeworm.com/read/382751/9003305
c mutex_unix.c
/*
** 2007 August 28
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness
www.eeworm.com/read/377683/9265851
c mutex_unix.c
/*
** 2007 August 28
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness
www.eeworm.com/read/372395/9511320
c bn_sqr.c
/* crypto/bn/bn_sqr.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
*
www.eeworm.com/read/175598/9540381
c mutex8r.c
/*
* mutex8r.c
*
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright (C) 1998 Ben Elliston and Ross Johnson
* Copyright (C) 1999,2000,2001 Ross Johnson
*
* Contact Email: rpj@ise
www.eeworm.com/read/175598/9540699
c pthread_mutex_destroy.c
/*
* pthread_mutex_destroy.c
*
* Description:
* This translation unit implements mutual exclusion (mutex) primitives.
*
* ------------------------------------------------------------------------