Home | History | Annotate | Download | only in pascal

Lines Matching refs:hello

28 (* "hello world" would be more standard, but the repeated "hello"
31 const hello: PChar = 'hello, hello!';
33 const dictionary: PChar = 'hello';
61 len := StrLen(hello)+1;
63 err := compress(compr, comprLen, hello, len);
71 if StrComp(PChar(uncompr), hello) <> 0 then
90 len := StrLen(hello)+1;
105 if gzprintf(zfile, ', %s!', 'hello') <> 8 then
111 if gzputs(zfile, ', hello!') <> 8 then
134 if StrComp(PChar(uncompr), hello) <> 0 then
163 if uncomprLen <> 7 then (* " hello!" *)
168 if StrComp(PChar(uncompr), hello + 6) <> 0 then
189 len := StrLen(hello)+1;
198 c_stream.next_in := hello;
261 if StrComp(PChar(uncompr), hello) <> 0 then
373 len := StrLen(hello)+1;
382 c_stream.next_in := hello;
468 c_stream.next_in := hello;
469 c_stream.avail_in := StrLen(hello)+1;
521 if StrComp(PChar(uncompr), hello) <> 0 then