Lines Matching refs:script
730 * allocation or RS script executions) to complete.
799 * @param fieldIDS Collection of Script's Field identifiers
800 * @param values Collection of Script's data values
801 * @param sizes Collection of Script's data sizes
803 * @param depFieldIDS Collection of Script's dependent Field identifiers
818 * @param params Collection of Invoke script parameters
819 * @param fieldIDS Collection of Script Field identifiers
857 * Creates a Script Kernel ID.
859 * @param script Script
862 * @return scriptKernelID Script's Kernel identifier
865 scriptKernelIDCreate(Script script, int32_t slot,
870 * Creates a Script Invoke ID.
872 * @param script Script
874 * @return scriptInvokeID Invoke Script's identifier
877 scriptInvokeIDCreate(Script script, int32_t slot)
883 * Creates a Script Field ID.
885 * @param script Script
887 * @return scriptFieldID Script's Field identifier
890 scriptFieldIDCreate(Script script, int32_t slot)
896 * Creates a Script Group.
901 * @param dstF Destination Script Field identifiers
903 * @return scriptGroup Created Script Group
912 * Creates a Script Group.
917 * @return scriptGroup2 Created Script Group
933 * @param sg Script Group
934 * @param kid Script's Kernel identifier to be changed
941 * Sets an input of the Script Group. This specifies an Allocation to be
943 * of the Script Group.
945 * @param sg Script Group
946 * @param kid Script's Kernel identifier to be changed
953 * Executes a Script Group.
955 * @param sg Script Group to be executed.
988 * Binds an Allocation to a global pointer in the Script.
990 * @param script Script to be bound to
995 scriptBindAllocation(Script script, Allocation allocation, uint32_t slot);
1000 * Sets the timezone of a Script.
1002 * @param script Script to be altered
1006 scriptSetTimeZone(Script script, string timeZone);
1013 * @param vs Script to be invoked
1017 scriptInvoke(Script vs, uint32_t slot);
1020 * Invokes a Script with values.
1022 * @param vs Script to be invoked
1027 scriptInvokeV(Script vs, uint32_t slot, vec<uint8_t> data);
1035 * @param vs Script
1043 scriptForEach(Script vs, uint32_t slot, vec<Allocation> vains,
1049 * @param vs Script
1056 scriptReduce(Script vs, uint32_t slot, vec<Allocation> vains,
1060 * Sets a Script's integer variable to a value.
1062 * @param vs RenderScript Script
1067 scriptSetVarI(Script vs, uint32_t slot, int32_t value);
1070 * Sets a Script's Object variable to a value
1072 * @param vs RenderScript Script
1077 scriptSetVarObj( Script vs, uint32_t slot, ObjectBase obj);
1080 * Sets a Script's long variable to a value.
1082 * @param vs RenderScript Script
1087 scriptSetVarJ(Script vs, uint32_t slot, int64_t value);
1090 * Sets a Script's float variable to a value.
1092 * @param vs RenderScript Script
1097 scriptSetVarF(Script vs, uint32_t slot, float value);
1100 * Sets a Script's double variable to a value.
1102 * @param vs RenderScript Script
1107 scriptSetVarD(Script vs, uint32_t slot, double value);
1110 * Sets a Script's struct variable to a value.
1112 * @param vs RenderScript Script
1117 scriptSetVarV(Script vs, uint32_t slot, vec<uint8_t> data);
1122 * Retrieves the value from a global variable in a script.
1124 * @param vs RenderScript Script
1130 scriptGetVarV(Script vs, uint32_t slot, Size len)
1140 * @param vs RenderScript Script
1147 scriptSetVarVE(Script vs, uint32_t slot, vec<uint8_t> data, Element ve,
1155 * Creates a RenderScript C99 kernel script.
1160 * @return script Created Script
1164 generates (Script script);
1167 * Creates a RenderScript Intrinsic script.
1169 * @param id Intrinsic Script identifier
1171 * @return script Created Script
1175 generates (Script script);