OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newprof
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/3rdparty/libjasper/
jas_cm.c
340
jas_cmprof_t *
newprof
;
local
343
if (!(
newprof
= jas_cmprof_create()))
345
newprof
->clrspc = prof->clrspc;
346
newprof
->numchans = prof->numchans;
347
newprof
->refclrspc = prof->refclrspc;
348
newprof
->numrefchans = prof->numrefchans;
349
newprof
->iccprof = jas_iccprof_copy(prof->iccprof);
352
if (!(
newprof
->pxformseqs[i] = jas_cmpxformseq_copy(prof->pxformseqs[i])))
356
return
newprof
;
[
all
...]
jas_icc.c
226
jas_iccprof_t *
newprof
;
local
227
newprof
= 0;
228
if (!(
newprof
= jas_iccprof_create()))
230
newprof
->hdr = prof->hdr;
231
newprof
->tagtab.numents = 0;
232
newprof
->tagtab.ents = 0;
233
assert(
newprof
->attrtab);
234
jas_iccattrtab_destroy(
newprof
->attrtab);
235
if (!(
newprof
->attrtab = jas_iccattrtab_copy(prof->attrtab)))
237
return
newprof
;
[
all
...]
Completed in 61 milliseconds