Lines Matching defs:binaries
5122 * Construct a program object from a list of devices and a per-device list of binaries.
5125 * \param binaries A vector of pairs of a pointer to a binary object and its length.
5127 * match the size of binaries and filled with values to specify if each binary
5134 * CL_INVALID_VALUE if the length of devices is zero; or if the length of binaries does not match the length of devices;
5135 * or if any entry in binaries is NULL or has length 0.
5143 const Binaries& binaries,
5152 if(binaries.size() != numDevices) {
5165 images[i] = (const unsigned char*)binaries[i].first;
5166 lengths[i] = binaries[(int)i].second;
5476 VECTOR_CLASS<char *> binaries;
5482 binaries.push_back(ptr);
5485 cl_int result = getInfo(CL_PROGRAM_BINARIES, &binaries);
5489 return binaries;