HomeSort by relevance Sort by last modified time
    Searched refs:rec (Results 201 - 225 of 487) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/skia/src/core/
SkBitmapProcShader.cpp 87 SkShader::Context* SkBitmapProcShader::onCreateContext(const ContextRec& rec, void* storage) const {
90 if (!this->computeTotalInverse(rec, &totalInverse)) {
101 if (!state->chooseProcs(totalInverse, *rec.fPaint)) {
106 return SkNEW_PLACEMENT_ARGS(storage, BitmapProcShaderContext, (*this, rec, state));
116 const SkBitmapProcShader& shader, const ContextRec& rec, SkBitmapProcState* state)
117 : INHERITED(shader, rec)
145 if (rec.fPaint->isDither() && bitmap.colorType() != kRGB_565_SkColorType) {
SkString.cpp 188 const SkString::Rec SkString::gEmptyRec = { 0, 0, 0 };
211 SkString::Rec* SkString::AllocRec(const char text[], size_t len) {
212 Rec* rec; local
215 rec = const_cast<Rec*>(&gEmptyRec);
220 rec = (Rec*)sk_malloc_throw(SizeOfRec() + SkAlign4(len + 1));
221 rec->fLength = SkToU32(len);
222 rec->fRefCnt = 1
340 Rec* rec = AllocRec(fRec->data(), fRec->fLength); local
    [all...]
SkTypeface.cpp 334 SkScalerContext::Rec rec; local
335 SkScalerContext::MakeRec(paint, NULL, NULL, &rec);
337 SkAutoDescriptor ad(sizeof(rec) + SkDescriptor::ComputeOverhead(1));
340 desc->addEntry(kRec_SkDescriptorTag, sizeof(rec), &rec);
SkDraw.cpp 314 static void bw_pt_rect_hair_proc(const PtProcRec& rec, const SkPoint devPts[],
316 SkASSERT(rec.fClip->isRect());
317 const SkIRect& r = rec.fClip->getBounds();
328 static void bw_pt_rect_16_hair_proc(const PtProcRec& rec,
331 SkASSERT(rec.fRC->isRect());
332 const SkIRect& r = rec.fRC->getBounds();
349 static void bw_pt_rect_32_hair_proc(const PtProcRec& rec,
352 SkASSERT(rec.fRC->isRect());
353 const SkIRect& r = rec.fRC->getBounds();
370 static void bw_pt_hair_proc(const PtProcRec& rec, const SkPoint devPts[]
556 PtProcRec rec; local
    [all...]
SkBlitter.cpp 592 Context* onCreateContext(const ContextRec& rec, void* storage) const override {
596 proxyContext = fProxy->createContext(rec, proxyContextStorage);
601 return SkNEW_PLACEMENT_ARGS(storage, Sk3DShaderContext, (*this, rec, proxyContext));
607 Sk3DShaderContext(const Sk3DShader& shader, const ContextRec& rec,
609 : INHERITED(shader, rec)
614 fPMColor = SkPreMultiplyColor(rec.fPaint->getColor());
867 SkShader::ContextRec rec(device, *paint, matrix);
872 shaderContext = shader->createContext(rec, storage);
935 SkTransparentShaderContext(const SkShader& shader, const SkShader::ContextRec& rec)
936 // Override rec with the identity matrix, so it is guaranteed to be invertible
    [all...]
  /external/libvncserver/libvncclient/
sockets.c 84 rfbVNCRec* rec = client->vncRec; local
87 if (rec->readTimestamp) {
88 rec->readTimestamp = FALSE;
89 if (!fread(&tv,sizeof(struct timeval),1,rec->file))
95 if (rec->tv.tv_sec!=0 && !rec->doNotSleep) {
97 diff.tv_sec = tv.tv_sec - rec->tv.tv_sec;
98 diff.tv_usec = tv.tv_usec - rec->tv.tv_usec;
111 rec->tv=tv;
114 return (fread(out,1,n,rec->file)<0?FALSE:TRUE)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbshelve.py 165 rec = c.first()
166 while rec is not None:
169 print rec
170 key, value = rec
173 rec = getattr(c, "next")()
180 rec = c.last()
181 while rec is not None:
184 print rec
185 key, value = rec
187 rec = c.prev(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbshelve.py 165 rec = c.first()
166 while rec is not None:
169 print rec
170 key, value = rec
173 rec = getattr(c, "next")()
180 rec = c.last()
181 while rec is not None:
184 print rec
185 key, value = rec
187 rec = c.prev(
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 96 final VolumeRecord rec = (VolumeRecord) data.readParcelable(null); local
97 onVolumeRecordChanged(rec);
209 public void onVolumeRecordChanged(VolumeRecord rec) throws RemoteException {
214 _data.writeParcelable(rec, 0);
303 public void onVolumeRecordChanged(VolumeRecord rec) throws RemoteException;
  /external/harfbuzz_ng/src/
hb-coretext.cc 224 feature_record_t rec; member in struct:active_feature_t
228 return a->rec.feature < b->rec.feature ? -1 : a->rec.feature > b->rec.feature ? 1 :
230 a->rec.setting < b->rec.setting ? -1 : a->rec.setting > b->rec.setting ? 1 :
483 feature.rec.feature = mapping->aatFeatureType
    [all...]
  /external/skia/src/utils/
SkCamera.cpp 291 Rec* rec = fRec; local
292 while (rec != &fInitialRec) {
293 Rec* next = rec->fNext;
294 SkDELETE(rec);
295 rec = next;
300 Rec* rec = SkNEW(Rec); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 164 void addArea(Rectangle rec, String tooltip) {
165 AreaZone zone = new AreaZone(rec, tooltip);
254 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength, BAR_HEIGHT);
255 this.gc.drawRectangle(rec);
256 graphArea.addArea(rec, "Time for baseline build "+baselineBuildResults.getName()+": "+Util.timeString((long)baselineValue));
264 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2), baselineBarLength+baselineErrorLength, BAR_HEIGHT);
265 this.gc.drawRectangle(rec);
273 graphArea.addArea(rec, tooltip.toString());
294 Rectangle rec = new Rectangle(MARGIN, y + (GAP/2) + BAR_HEIGHT, currentBarLength, BAR_HEIGHT);
295 this.gc.drawRectangle(rec);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 80 public void onVolumeRecordChanged(VolumeRecord rec) {
84 final VolumeInfo vol = mStorageManager.findVolumeByUuid(rec.getFsUuid());
180 for (VolumeRecord rec : recs) {
181 if (rec.getType() != VolumeInfo.TYPE_PRIVATE) continue;
183 final String fsUuid = rec.getFsUuid();
185 if ((info != null && info.isMountedWritable()) || rec.isSnoozed()) {
192 rec.getNickname());
200 .setContentIntent(buildForgetPendingIntent(rec))
320 final VolumeRecord rec = mStorageManager.findRecordByUuid(vol.getFsUuid()); local
325 if (rec.isSnoozed() && disk.isAdoptable())
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chv_filter.cpp 148 Function prototype : void CombinedHorzVertFilter( uint8 *rec,
155 rec : pointer to the decoded frame buffer.
177 uint8 *rec,
221 ptr = rec + (brwidth << 6) + (bc << 3);
337 ptr = rec + (brwidth << 6) + (bc << 3);
454 uint8 *rec,
498 ptr = rec + (brwidth << 6) + (bc << 3);
576 ptr = rec + (brwidth << 6) + (bc << 3);
  /frameworks/base/services/core/java/com/android/server/
MountService.java 348 final VolumeRecord rec = findRecordForPath(path); local
349 if (rec == null || rec.createdMillis == 0) {
352 return "ext:" + (int) ((System.currentTimeMillis() - rec.createdMillis)
374 final VolumeRecord rec = mRecords.get(vol.fsUuid); local
375 if (vol.isMountedReadable() && rec != null) {
376 final long benchAge = System.currentTimeMillis() - rec.lastBenchMillis;
1093 final VolumeRecord rec = findRecordForPath(path); local
1111 final VolumeRecord rec = findRecordForPath(path); local
1226 VolumeRecord rec = mRecords.get(vol.fsUuid); local
1468 final VolumeRecord rec = readVolumeRecord(in); local
1498 final VolumeRecord rec = mRecords.valueAt(i); local
1734 final VolumeRecord rec = mRecords.get(fsUuid); local
1748 final VolumeRecord rec = mRecords.get(fsUuid); local
1762 final VolumeRecord rec = mRecords.remove(fsUuid); local
1787 final VolumeRecord rec = mRecords.valueAt(i); local
    [all...]
  /frameworks/native/services/sensorservice/
SensorService.cpp 573 SensorRecord* rec = mActiveSensors.valueFor(sensor_handle); local
574 if (rec != NULL) {
575 mMapFlushEventsToConnections[i] = rec->getFirstPendingFlushConnection();
576 rec->removeFirstPendingFlushConnection();
802 SensorRecord* rec = mActiveSensors.valueAt(i); local
803 ALOGE_IF(!rec, "mActiveSensors[%zu] is null (handle=0x%08x)!", i, handle);
852 SensorRecord* rec = mActiveSensors.valueFor(handle); local
996 SensorRecord* rec = mActiveSensors.valueFor(handle); local
1069 SensorRecord* rec = mActiveSensors.valueFor(handle); local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 5 let rec lex = parser
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 5 let rec lex = parser
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 5 let rec lex = parser
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 5 let rec lex = parser
parser.ml 18 let rec parse_primary = parser
29 let rec parse_args accumulator = parser
37 let rec parse_ident id = parser
129 let rec parse_args accumulator = parser
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 5 let rec lex = parser
parser.ml 18 let rec parse_primary = parser
29 let rec parse_args accumulator = parser
37 let rec parse_ident id = parser
142 let rec parse_args accumulator = parser

Completed in 2224 milliseconds

1 2 3 4 5 6 7 891011>>