Lines Matching refs:random_info
40 RandomInfo **random_info) in DestroyRandomInfoThreadSet() argument
45 assert(random_info != (RandomInfo **) NULL); in DestroyRandomInfoThreadSet()
47 if (random_info[i] != (RandomInfo *) NULL) in DestroyRandomInfoThreadSet()
48 random_info[i]=DestroyRandomInfo(random_info[i]); in DestroyRandomInfoThreadSet()
49 return((RandomInfo **) RelinquishMagickMemory(random_info)); in DestroyRandomInfoThreadSet()
58 **random_info; in AcquireRandomInfoThreadSet() local
64 random_info=(RandomInfo **) AcquireQuantumMemory(number_threads, in AcquireRandomInfoThreadSet()
65 sizeof(*random_info)); in AcquireRandomInfoThreadSet()
66 if (random_info == (RandomInfo **) NULL) in AcquireRandomInfoThreadSet()
68 (void) ResetMagickMemory(random_info,0,number_threads*sizeof(*random_info)); in AcquireRandomInfoThreadSet()
71 random_info[i]=AcquireRandomInfo(); in AcquireRandomInfoThreadSet()
72 if (random_info[i] == (RandomInfo *) NULL) in AcquireRandomInfoThreadSet()
73 return(DestroyRandomInfoThreadSet(random_info)); in AcquireRandomInfoThreadSet()
75 return(random_info); in AcquireRandomInfoThreadSet()