Searched refs:rec (Results 101 - 125 of 515) sorted by relevance

1234567891011>>

/external/qemu/
H A Diohandler.c155 ChildProcessRecord *rec, *next; local
157 QLIST_FOREACH_SAFE(rec, &child_watches, next, next) {
158 if (waitpid(rec->pid, NULL, WNOHANG) == rec->pid) {
159 QLIST_REMOVE(rec, next);
160 g_free(rec);
177 ChildProcessRecord *rec; local
183 QLIST_FOREACH(rec, &child_watches, next) {
184 if (rec->pid == pid) {
188 rec
[all...]
/external/skia/src/opts/
H A DSkXfermode_opts_SSE2.h16 SkSSE2ProcCoeffXfermode(const ProcCoeff& rec, SkXfermode::Mode mode, argument
18 : INHERITED(rec, mode), fProcSIMD(procSIMD) {}
35 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl_SSE2(const ProcCoeff& rec,
/external/srec/srec/crec/
H A Dsrec_stats.c80 void srec_stats_update(srec* rec, char* msg) argument
95 st_index = rec->active_fsmarc_tokens;
98 stoken = &rec->fsmarc_token_array[st_index];
105 ft_index = rec->active_fsmnode_tokens;
108 ftoken = &rec->fsmnode_token_array[ft_index];
115 for (i = 0, num = 0; i < rec->current_search_frame; i++)
117 wt_index = rec->word_lattice->words_for_frame[i];
120 wtoken = &rec->word_token_array[wt_index];
128 for (num = 0, awtoken = rec->altword_token_freelist; awtoken; awtoken = awtoken->next_token)
130 num = rec
[all...]
H A Dc47mulsp.c43 if (recm->rec[0].num_model_slots_allocated < model->num_hmmstates)
46 recm->rec[0].num_model_slots_allocated,
72 srec_begin(&recm->rec[i], begin_syn_node);
87 srec_no_more_frames(&recm->rec[i]);
88 /* srec_get_result(rec); */
109 recm->rec[i].context = context;
123 recm->rec[i].context = NULL;
H A Dastar.c52 int astar_draw_tree_as_dotty(const char* file, srec* rec, AstarStack* stack);
243 void print_partial_paths(partial_path** parps, int num_parps, srec* rec, const char* msg);
244 void print_path(partial_path* path, srec* rec, char* msg);
486 wtokenID token_index, srec* rec,
496 wtoken = &rec->word_token_array[token_index];
499 parp->word = rec->word_token_array[ token_index].word;
502 /* wtoken->end_time should be equal to rec->current_search_frame */
503 ASSERT(rec->accumulated_cost_offset[ wtoken->end_time] != 0);
504 parp->costsofar = rec->accumulated_cost_offset[ wtoken->end_time];
506 /* BKWD: rec
485 make_partial_path(AstarStack* stack, wtokenID token_index, srec* rec, int* pwhether_complete) argument
521 astar_stack_make(srec* rec, int max_nbest_len) argument
554 astar_stack_destroy(srec* rec) argument
569 astar_stack_prepare(AstarStack* stack, int request_nbest_len, srec* rec) argument
654 astar_stack_do_backwards_search(srec* rec, int request_nbest_len) argument
923 print_path(partial_path* ipath, srec* rec, char* msg) argument
978 print_partial_paths(partial_path** parps, int num_parps, srec* rec, const char* msg) argument
1001 astar_draw_arc_as_dotty(FILE* fp, partial_path* parp, int src_node, int *nodes_used, srec* rec) argument
1037 astar_draw_tree_as_dotty(const char* file, srec* rec, AstarStack* stack) argument
1073 astar_stack_prepare_from_active_search(AstarStack* stack, int nbestlen, srec* rec) argument
1243 astar_stack_flag_word_tokens_used(AstarStack* stack, srec* rec) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPathEffect.cpp69 SkStrokeRec* rec, const SkRect* cullRect) const {
78 if (fPE1->filterPath(&tmp, src, rec, cullRect)) {
81 return fPE0->filterPath(dst, *ptr, rec, cullRect);
93 SkStrokeRec* rec, const SkRect* cullRect) const {
95 return fPE0->filterPath(dst, src, rec, cullRect) |
96 fPE1->filterPath(dst, src, rec, cullRect);
68 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
92 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
H A DSkXfermode_proccoeff.h18 SkProcCoeffXfermode(const ProcCoeff& rec, Mode mode) { argument
20 fProc = rec.fProc;
22 fSrcCoeff = rec.fSC;
23 fDstCoeff = rec.fDC;
H A DSkPictureFlat.cpp27 void SkTypefacePlayback::reset(const SkRefCntSet* rec) { argument
34 if (rec!= NULL && rec->count() > 0) {
35 fCount = rec->count();
37 rec->copyToArray(fArray);
/external/chromium_org/v8/src/
H A Dunbound-queue.h27 INLINE(bool Dequeue(Record* rec));
28 INLINE(void Enqueue(const Record& rec));
/external/chromium_org/v8/tools/testrunner/server/
H A Dlocal_handler.py43 rec = compression.Receiver(sock)
45 while not rec.IsDone():
46 data = rec.Current()
49 rec.Advance()
56 rec = compression.Receiver(self.request)
57 while not rec.IsDone():
58 data = rec.Current()
93 rec.Advance()
H A Dstatus_handler.py44 rec = compression.Receiver(sock)
46 while not rec.IsDone():
47 data = rec.Current()
50 rec.Advance()
79 rec = compression.Receiver(self.request)
80 while not rec.IsDone():
81 data = rec.Current()
104 rec.Advance()
/external/libselinux/src/
H A Dlabel_android_property.c83 static int process_line(struct selabel_handle *rec, argument
90 struct saved_data *data = (struct saved_data *)rec->data;
130 if (rec->validating) {
131 if (selabel_validate(rec, &spec_arr[nspec].lr) < 0) {
143 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, argument
146 struct saved_data *data = (struct saved_data *)rec->data;
185 if (process_line(rec, path, line_buf, pass, ++lineno) != 0) {
225 static void closef(struct selabel_handle *rec) argument
227 struct saved_data *data = (struct saved_data *)rec->data;
244 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, argument
279 stats(struct selabel_handle __attribute__((unused)) *rec) argument
284 selabel_property_init(struct selabel_handle *rec, const struct selinux_opt *opts, unsigned nopts) argument
[all...]
/external/qemu/distrib/libselinux/src/
H A Dlabel_android_property.c83 static int process_line(struct selabel_handle *rec, argument
90 struct saved_data *data = (struct saved_data *)rec->data;
130 if (rec->validating) {
131 if (selabel_validate(rec, &spec_arr[nspec].lr) < 0) {
143 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, argument
146 struct saved_data *data = (struct saved_data *)rec->data;
185 if (process_line(rec, path, line_buf, pass, ++lineno) != 0) {
225 static void closef(struct selabel_handle *rec) argument
227 struct saved_data *data = (struct saved_data *)rec->data;
244 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, argument
279 stats(struct selabel_handle __attribute__((unused)) *rec) argument
284 selabel_property_init(struct selabel_handle *rec, const struct selinux_opt *opts, unsigned nopts) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3parser.h59 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_PARSER_struct
H A Dantlr3treeparser.h57 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_TREE_PARSER_struct
/external/chromium_org/third_party/libyuv/util/
H A Dpsnr.h34 double ComputeSumSquareError(const uint8* org, const uint8* rec, int size);
/external/chromium_org/third_party/skia/src/lazy/
H A DSkCachingPixelRef.cpp42 bool SkCachingPixelRef::onNewLockPixels(LockRec* rec) { argument
69 rec->fPixels = pixels;
70 rec->fColorTable = NULL;
71 rec->fRowBytes = fLockedBitmap.rowBytes();
H A DSkDiscardablePixelRef.cpp39 bool SkDiscardablePixelRef::onNewLockPixels(LockRec* rec) { argument
42 rec->fPixels = fDiscardableMemory->data();
43 rec->fColorTable = fCTable.get();
44 rec->fRowBytes = fRowBytes;
89 rec->fPixels = pixels;
90 rec->fColorTable = fCTable.get();
91 rec->fRowBytes = fRowBytes;
/external/chromium_org/third_party/skia/tests/
H A DGrMemoryPoolTest.cpp212 Rec* rec = instanceRecs.append(); local
213 rec->fInstance = A::Create(&r);
214 rec->fValue = static_cast<int>(r.nextU());
215 rec->fInstance->setValues(rec->fValue);
218 Rec& rec = instanceRecs[d]; local
219 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
220 delete rec.fInstance;
225 Rec& rec local
231 Rec& rec = instanceRecs[i]; local
[all...]
/external/skia/src/core/
H A DSkLocalMatrixShader.cpp22 SkShader::Context* SkLocalMatrixShader::onCreateContext(const ContextRec& rec, argument
24 ContextRec newRec(rec);
26 if (rec.fLocalMatrix) {
27 tmp.setConcat(this->getLocalMatrix(), *rec.fLocalMatrix);
H A DSkPictureFlat.cpp27 void SkTypefacePlayback::reset(const SkRefCntSet* rec) { argument
34 if (rec!= NULL && rec->count() > 0) {
35 fCount = rec->count();
37 rec->copyToArray(fArray);
/external/skia/tests/
H A DGrMemoryPoolTest.cpp212 Rec* rec = instanceRecs.append(); local
213 rec->fInstance = A::Create(&r);
214 rec->fValue = static_cast<int>(r.nextU());
215 rec->fInstance->setValues(rec->fValue);
218 Rec& rec = instanceRecs[d]; local
219 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
220 delete rec.fInstance;
225 Rec& rec local
231 Rec& rec = instanceRecs[i]; local
[all...]
/external/skia/src/lazy/
H A DSkDiscardablePixelRef.cpp39 bool SkDiscardablePixelRef::onNewLockPixels(LockRec* rec) { argument
42 rec->fPixels = fDiscardableMemory->data();
43 rec->fColorTable = NULL;
44 rec->fRowBytes = fRowBytes;
89 rec->fPixels = pixels;
90 rec->fColorTable = fCTable.get();
91 rec->fRowBytes = fRowBytes;
/external/chromium_org/third_party/skia/gm/
H A Dcolorfilters.cpp65 } rec[] = { variable in typeref:struct:ColorFiltersGM::__anon15035
76 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
77 rec[i].fProc(&paint, rec[i].fData0, rec[i].fData1);
/external/skia/gm/
H A Dcolorfilters.cpp65 } rec[] = { variable in typeref:struct:ColorFiltersGM::__anon30449
76 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
77 rec[i].fProc(&paint, rec[i].fData0, rec[i].fData1);

Completed in 2073 milliseconds

1234567891011>>