Lines Matching refs:src
589 unsigned char **src; /* Array of source strings pointers. */ in bitopCommand() local
617 src = zmalloc(sizeof(unsigned char*) * numkeys); in bitopCommand()
625 src[j] = NULL; in bitopCommand()
637 zfree(src); in bitopCommand()
643 src[j] = objects[j]->ptr; in bitopCommand()
664 memcpy(lp,src,sizeof(unsigned long*)*numkeys); in bitopCommand()
665 memcpy(res,src[0],minlen); in bitopCommand()
722 output = (len[0] <= j) ? 0 : src[0][j]; in bitopCommand()
725 byte = (len[i] <= j) ? 0 : src[i][j]; in bitopCommand()
739 zfree(src); in bitopCommand()
1075 unsigned char *src = NULL; in bitfieldCommand() local
1079 src = getObjectReadOnlyString(o,&strlen,llbuf); in bitfieldCommand()
1089 if (src == NULL || i+byte >= (size_t)strlen) break; in bitfieldCommand()
1090 buf[i] = src[i+byte]; in bitfieldCommand()